如何从 iPad 中的特定位置开始为 UILabel 制作动画?
我需要在按下按钮时开始为 UILabel 制作动画...动画应该从按钮的位置开始。 我怎样才能实现这个目标?
即,将标签从屏幕的一端移动到另一端。
I need to start animating a UILabel when a button is pressed... the animation should start from the position of the button.
How can I achieve this?
i.e moving label from one end of the screen to another end.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过 UIView 的 animateWithDuration 方法实现的,可以在文档 此处。
一个非常简单的示例,按下按钮时应该调用:
This is acheviced with UIView's animateWithDuration methods, which can be found in the documentation here.
A very simple example which should be called when your button is pressed: