您好,登錄后才能下訂單哦!
IOS 開發之實現取消tableView返回時cell選中的問題
在對表格UITableView操作時,有時當用戶選中表格行后,需要自動取消選擇。實現這種效果,其原理是選中表格行時,會調用 didSelectRowAtIndexPath方法,只要在這個方法中,調用performSelector執行取消選中表格行的方法。
示例代碼如下:
- (void) unselectCurrentRow { // Animate the deselection [self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES]; } - (void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)newIndexPath { // Any other table management you need ... // After one second, unselect the current row [self performSelector:@selector(unselectCurrentRow)withObject:nil afterDelay:1.0]; }
在performSelector中還可以設定延遲時間。unselectCurrentRow方法中則完成取消表格行的選擇,并且實現了動畫效果。
如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。