所有, 我在用的的UITableView,並試圖實施編輯/刪除功能。的UITableView編輯/ delate-單元格的內容超出屏幕
當我打電話給這條線。
[tblStoreAvail setEditing:TRUE animated:TRUE];
單元格的內容不在屏幕上。
這些功能從未被調用過。
- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
- (void)tableView:(UITableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
而不是將右標籤作爲子視圖。將標籤設置爲accessoryView和EditingAccessoryView .. cell.editingAccessoryView = label; cell.accessoryView = label; – waheeda