Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 UITableView 时间标签内有自定义单元格,我需要每 10 毫秒递减一次,直到它达到零。如何在单独的线程中刷新单元格(从车道内的时间递减,UTC,并显示新值)以避免阻塞 UI?
这行得通。如果您需要每 10 毫秒执行一次,请设置一个NSTimer
[self.tableView reloadRowsAtIndexPaths:<#(NSArray *)#> withRowAnimation:<#(UITableViewRowAnimation)#>];