UIButton 立即购买效果

发布于 2024-08-22 20:30:27 字数 486 浏览 3 评论 0原文

我想在我的应用程序中制作一个“立即购买”按钮,其工作方式应与 App Store 中的按钮相同,但我不知道如何使用动画调整 UIButton 的大小。

我尝试了以下操作,但它立即调整了按钮的大小,而不是作为动画:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:10.5];
[buyButton setFrame:CGRectMake(20, 115, 70, 21)];
[UIView commitAnimations];

其中“buyButton”是 UIButton。

我已经检查过这篇文章 UIButton AppStore 购买按钮动画,但似乎没有去工作。

I want to make a "Buy Now" button in my Application, which should work the same way as the one in the App Store, but I dont know how to resize the UIButton with an animation.

I have tried the following, but it resized the button at once and not as an animation:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:10.5];
[buyButton setFrame:CGRectMake(20, 115, 70, 21)];
[UIView commitAnimations];

Where the "buyButton" is a UIButton.

I've checked ou this post UIButton AppStore buy button animation, but is does not seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

誰ツ都不明白 2024-08-29 20:30:27

试试这个:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:duration];

CGAffineTransform scale = CGAffineTransformMakeScale(scalingFactorX, scalingFactorY);
buyButton.transform = scale;

[UIView commitAnimations];

使用 CGAffineTransform 可能会有所帮助。我还没有尝试过这个,但是,它应该有效。

Try this:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:duration];

CGAffineTransform scale = CGAffineTransformMakeScale(scalingFactorX, scalingFactorY);
buyButton.transform = scale;

[UIView commitAnimations];

Using CGAffineTransform may help. I have not tried this, however, it should work.

咆哮 2024-08-29 20:30:27

theapptree.com 上用于应用程序内购买的示例代码应该可以满足您的需求。

http://www.theapptree.com/samples

the sample code on theapptree.com for the inapp purchase should do what you want.

http://www.theapptree.com/samples

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文