2012-01-05 73 views
-1

如何將tableview單元格從第一行拖到第五行?如何將tableview單元格從一行拖到另一行?

這可以在iPhone上實現嗎?

如果是,請提前告訴我如何執行此操作。

+0

http://developer.apple.com/library/IOs/documentation/UserExperience/Conceptual/ TableView_iPhone/ManageReorderRow/ManageReorderRow.html#// apple_ref/doc/uid/TP40007451-CH11-SW1如果您在閱讀後遇到特定問題,請提出具體問題。 – jrturton 2012-01-05 15:29:34

回答

1

實現以下UITableViewDelegate方法:

tableView:canMoveRowAtIndexPath: 
tableView:moveRowAtIndexPath:toIndexPath: 

,並在在的tableView editing屬性設置爲YES

相關問題