我搜索了幾篇文章,但沒有找到我要找的內容。基本上,我想在每一行顯示刪除按鈕,但我不想使用UITableView.editing屬性。 因爲它看起來像這樣;UITableViewCell,顯示輕掃式刪除按鈕,不用刷卡
會有 「編輯」 按鈕。當用戶點擊它時,刪除按鈕將看起來像滑動式。
是否有機會顯示刪除按鈕這樣的;
也許是有一些方法來處理它。否則,我將爲此創建自定義視圖。
感謝您的建議。
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
// Return YES if you want the specified item to be editable.
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
//Do something...
}
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}
做ü要刪除像的tableview圖像2按鈕? –
@bhavinramani是的,我想刪除按鈕將看起來像image2。將會有「編輯」按鈕,當你點擊它時,所有行應該看起來像image2。 –
自定義tableview單元格是你唯一的選擇,因爲單元格末端的刪除按鈕一次不會顯示在tableview中的所有單元格中(正如你在屏幕截圖中闡述的那樣) – viral