這里所指的快捷鍵,是系統(tǒng)提供給我們的一些快捷方式。比如:
當(dāng)我們長(zhǎng)按一個(gè)Cell時(shí),將彈出“拷貝”,“粘貼”等快捷鍵。
沒(méi)有什么好說(shuō)的,都在代碼里:
#pragma mark- UITableViewDelegate
// 是否顯示快捷菜單
- (BOOL) tableView:(UITableView *)tableView shouldShowMenuForRowAtIn
}
// 設(shè)置允許顯示的快捷菜單項(xiàng) - (BOOL) tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender{
}
// 捕獲選擇項(xiàng):根據(jù)用戶實(shí)際上從快捷菜單中選定的項(xiàng)目,做相應(yīng)的操作 - (void) tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender{
}
希望對(duì)你有所幫助!
|
|
來(lái)自: 嘆落花 > 《待分類(lèi)1》