在表格视图动画期间控制iPhone应用程序流程

时间:2009-06-20 03:58:08

标签: iphone multithreading animation uitableview

在我的应用程序中,我希望能够在执行部分应用程序之前等到表视图动画(删除表视图行)完成。我想知道在这些动画完成之前是否有任何方法可以等待或暂停我的应用程序。

感谢。

1 个答案:

答案 0 :(得分:1)

删除完成后,您的tableview应将tableView:didEndEditingRowAtIndexPath:消息发送给其委托。如果您的代理人对该消息做出回应,您可以将该应用程序代码(或对执行该代码的类的调用)放在该方法中。

Apple在这里有更多关于tableview插入和删除的信息:

http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UITableViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UITableViewDelegate/tableView:didEndEditingRowAtIndexPath

http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/TableView_iPhone/ManageInsertDeleteRow/ManageInsertDeleteRow.html