iOSUITableView實現(xiàn)側(cè)滑刪除
2016/12/21 18:08:18點擊:
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableVieweditingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
returnUITableViewCellEditingStyleDelete;
}
iOS移動APP開發(fā)
/*改變刪除按鈕的title*/
-(NSString *)tableView:(UITableView *)tableViewtitleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return@"刪除";
}
/*刪除用到的函數(shù)*/
-(void)tableView:(UITableView *)tableViewcommitEditingStyle:(UITableViewCellEditingStyle)editingStyleforRowAtIndexPath:(NSIndexPath *)indexPath
{
/*此處處理自己的代碼,如刪除數(shù)據(jù)*/
/*刷新*/
[tableViewreloadData];
}
{
returnUITableViewCellEditingStyleDelete;
}
iOS移動APP開發(fā)
/*改變刪除按鈕的title*/
-(NSString *)tableView:(UITableView *)tableViewtitleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return@"刪除";
}
/*刪除用到的函數(shù)*/
-(void)tableView:(UITableView *)tableViewcommitEditingStyle:(UITableViewCellEditingStyle)editingStyleforRowAtIndexPath:(NSIndexPath *)indexPath
{
/*此處處理自己的代碼,如刪除數(shù)據(jù)*/
/*刷新*/
[tableViewreloadData];
}
- 上一篇:糧食信息平臺完成交付(微信公眾號) 2016/12/28
- 下一篇:iOSNSUserDefaults詳解存取清空數(shù)據(jù) 2016/12/8