使用CoreAnimation framework可以给popViewControllerAnimated方法变相添加完成回调
[CATransaction begin];
[CATransaction setCompletionBlock:^{
// handle completion here
}];
[self.navigationController popViewControllerAnimated:YES];
[CATransaction commit];
给popViewControllerAnimated方法变相添加完成回调本文访问次数:0
使用CoreAnimation framework可以给popViewControllerAnimated方法变相添加完成回调
[CATransaction begin];
[CATransaction setCompletionBlock:^{
// handle completion here
}];
[self.navigationController popViewControllerAnimated:YES];
[CATransaction commit];
需要输入验证码才能留言