YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!

iOS-UI-UITableView-移动-是否禁止跨区

[上部分 链接
======][1]

上部分链接-同上方链接TableView里面 1 2 3 一样

#warning 移动 3 - 设置是否允许移动

warning 移动 4 - 实现移动逻辑 实际移动结束时触发


// 先操作数据
// 根据源坐标获取对象
NSString *sourceKey = [self.stuInfoDic.allKeys objectAtIndex:sourceIndexPath.section];
NSMutableArray *sourceArr = [self.stuInfoDic objectForKey:sourceKey];

// 得到要删除的学生对象 并且从数组中移除
// 注意引用计数!!!
Student *stu = [[sourceArr objectAtIndex:sourceIndexPath.row] retain];
[sourceArr removeObjectAtIndex:sourceIndexPath.row] ;
// 插入之前移除的学生对象
NSString *desKey = [self.stuInfoDic.allKeys objectAtIndex:destinationIndexPath.section];
NSMutableArray *desArr = [self.stuInfoDic objectForKey:desKey];
[desArr insertObject:stu atIndex:destinationIndexPath.row];

[stu release];
// 再操作界面

// [self.table moveRowAtIndexPath:sourceIndexPath toIndexPath:destinationIndexPath];

}

warning 移动 5 - 限制跨区移动 (只能咋所在区域内进行移动)




当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »