我是新手MultiThreading
。
我有UITableView
几行。当我选择一行时,服务器中会发生一些动作。所以这需要一些时间来完成这个动作。因此,当我想选择表中的其他行时,执行操作需要时间,即在第一行完成操作后,该行将启动操作。
So all i want to do is that, when the 1st row is selected and the action is preforming, and when i select the 2nd row , the 1st row action should open an new thread and run in that thread, and after the action is completed它应该杀死线程。
我希望这种方式发生在UITableview
.
谁能帮我解决这个问题。提前致谢。