我有一个基本上使用这个的方法:
-(void)myMethodwithDuration:(NSTimeInterval)time{
[UIView animateWithDuration:time
animations:^{
// do thing here
}
completion:^(BOOL finished){
//do completion stuff here
}
];
我不知道该怎么做是编写/打包一个参数,以便我可以编写我想要执行的代码,然后像我一样将它简单地传递给方法time
。
任何帮助表示赞赏。谢谢