Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将其嵌入到我的 iphone 应用程序上方的一个字段中,该字段包括一个用户按下以进行注册的按钮。提前致谢!!本文的其余部分是为了帮助提高质量标准
您可以使用 UIView 动画来制作这种动画:
[UIView animateWithDuration:0.5 animations:^{ button.frame = CGRectMake(20, 10, 50, 10); // the final button frame }];