使用滑动手势交换两个 UIButton
Posted
技术标签:
【中文标题】使用滑动手势交换两个 UIButton【英文标题】:Swap two UIButton using swipe gesture 【发布时间】:2013-02-21 02:46:04 【问题描述】:现在我的视图上有两个 UIButton。我想知道如何交换它们。我已经弄清楚如何使用滑动手势。只需要帮助用动画交换他们的位置。谢谢
【问题讨论】:
【参考方案1】:假设您没有使用自动布局,您可以使用动画制作交换
[UIView animateWithDuration:0.25
animations:^
CGRect savedFrame = self.button1.frame;
self.button1.frame = self.button2.frame;
self.button2.frame = savedFrame;
];
【讨论】:
以上是关于使用滑动手势交换两个 UIButton的主要内容,如果未能解决你的问题,请参考以下文章