缩放/旋转界面中的按钮
我需要在 iphone sdk 界面生成器中将按钮旋转 30 度,你该怎么做?
I need to rotate a button by 30 degrees in iphones sdk interface builder, how do you do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法在 Interface Builder 中执行此操作,但代码非常简单。
确保您已将 IB 中的按钮连接到
UIButton*
类型的IBOutlet
(我们将其称为myButton
)。 然后,一旦笔尖被加载(例如,在您的 viewDidLoad 方法中),您就可以使用如下内容: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 typeUIButton*
(let's call itmyButton
). Then once the nib has been loaded (for example, in yourviewDidLoad
method) you can use something like this:我不确定你是否可以直接这样做。 如果您通过 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