- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section==0)
{
return NO;
}
else
{
return YES;
}
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle ==UITableViewCellEditingStyleDelete)
{
[IanAlert confirmWithTitle:@"温馨提示" message:@"是否要删除该条信息" yes:@"确定" actionYes:^
{
NSLog(@"你点击了确定的按钮");
} andno:@"取消" actionNo:^
{
}];
}
}
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"删除";
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.section==0)
{
if (indexPath.row==2)
{
MLLZhiDingAccountViewController*accountVC=[[MLLZhiDingAccountViewController alloc]init];
[self.navigationController pushViewController:accountVC animated:YES];
}
}
}
iOS侧拉删除功能以及自定义侧拉显示文字
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- iOS11之前,苹果自带的UISearchBar中提示性文字和放大镜是默认居中显示的,但是升级到iOS11之后这个...
- 本篇文章是记录下自己学习的内容 , 代码比较low,请各位大神多多指教 效果为 主要实现方法: 实现下划线。重写d...
- 众所周知,在 iOS 里 UITableView 的左滑/侧滑删除的功能还是挺美观的,最近项目的需求里就用到了这个...
- 项目中需要自定义iOS侧滑删除按钮定制,平常正常使用,但是在分多个组,且tableview UI相对复杂,侧滑需要...