缩放/旋转界面中的按钮

发布于 2024-07-29 01:28:15 字数 46 浏览 3 评论 0原文

我需要在 iphone sdk 界面生成器中将按钮旋转 30 度,你该怎么做?

I need to rotate a button by 30 degrees in iphones sdk interface builder, how do you do that?

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

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

发布评论

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

评论(3

对岸观火 2024-08-05 01:28:15

您无法在 Interface Builder 中执行此操作,但代码非常简单。

确保您已将 IB 中的按钮连接到 UIButton* 类型的 IBOutlet(我们将其称为 myButton)。 然后,一旦笔尖被加载(例如,在您的 viewDidLoad 方法中),您就可以使用如下内容:

#define RADIANS(degrees) ((degrees * M_PI) / 180.0)

CGAffineTransform rotateTransform = CGAffineTransformRotate(CGAffineTransformIdentity,
         RADIANS(30.0));

myButton.transform = rotateTransform;

You can't do it in Interface Builder, but the code is pretty straightforward.

Make sure you've connected the button in IB to an IBOutlet of type UIButton* (let's call it myButton). Then once the nib has been loaded (for example, in your viewDidLoad method) you can use something like this:

#define RADIANS(degrees) ((degrees * M_PI) / 180.0)

CGAffineTransform rotateTransform = CGAffineTransformRotate(CGAffineTransformIdentity,
         RADIANS(30.0));

myButton.transform = rotateTransform;
抱猫软卧 2024-08-05 01:28:15

我不确定你是否可以直接这样做。 如果您通过 CoreGraphics 图层绘制自己的按钮,您也许能够做到这一点。

核心动画层

I'm not sure that you can do it directly. You might be able to do it if you were drawing your own buttons via CoreGraphics layers.

Core Animation Layers

青巷忧颜 2024-08-05 01:28:15
             [UIView beginAnimations:nil context:nil];

    [UIView setAnimationDuration:0.5];

    button.transform=CGAffineTransformMakeRotation((0.0174532925)*30);

    //put the -ve sign before 30 if you want to rotate the button in the anticlockwise else use this one 

    [UIView commitAnimations];
             [UIView beginAnimations:nil context:nil];

    [UIView setAnimationDuration:0.5];

    button.transform=CGAffineTransformMakeRotation((0.0174532925)*30);

    //put the -ve sign before 30 if you want to rotate the button in the anticlockwise else use this one 

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