我想要一个在点击时切换元素位置的按钮。
我当前的代码:
-(IBAction)menuTouched{
// Push menu
UITableView * sideMenu = [[UITableView alloc] initWithFrame:CGRectMake(1060, 88, 63, 661)];
sideMenu.backgroundColor = [UIColor redColor];
[self.view addSubview:sideMenu];
// Animate
[UIView animateWithDuration:1.25 animations:^{
sideMenu.frame = CGRectMake(960, 88, 63, 661);
}];
}
单击按钮时,它会像我想要的那样为 tableview 设置动画。但是现在我想通过按下完全相同的按钮来为 tableview 设置动画。所以简而言之,我希望按钮通过更改 X 位置来切换表格视图。什么是最好/最简单的方法?
提前致谢。