// 设置cell右边的指示样式(箭头样式)
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
// 设置cell右边显示的控件
// accessoryView优先级 > accessoryType
cell.accessoryView = [[UISwitch alloc] init];
// 去除多余的分割线
self.tableView.tableFooterView = [[UIView alloc] init];
// 隐藏状态栏
- (BOOL)prefersStatusBarHidden {
return YES;
}
// 快速计算位置
CGFloat titleX = CGRectGetMaxX(self.iconImageView.frame) + space;
CGFloat priceY = CGRectGetMaxY(self.iconImageView.frame) - space;
// xib 加载自定义cell
if (cell == nil) {
cell = [[[NSBundle mainBundle] loadNibNamed:NSStringFromClass([XMGTgCell class]) owner:nil options:nil] lastObject];
}
// 代码注册cell
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:reuse];
// xib注册
[self.tableView registerNib:[UINib nibWithNibName:NSStringFromClass([UITableViewCell class]) bundle:nil] forCellReuseIdentifier:reuse];
- 利用MJExtension将数据转模型
@property (nonatomic, strong) NSArray *statuses;
// 利用MJExtension将数据转模型
// 懒加载
- (NSArray *)statuses {
if (!_statuses) {
_statuses = [XMGStatus mj_objectArrayWithFilename:@"statuses.plist"];
}
return _statuses;
}
- 计算文字的尺寸(不需要换行)
// self--sizing(iOS8 以后)
// 告诉tableView所有cell的真实高度是自动计算的(根据设置的约束)
self.tableView.rowHeight = UITableViewAutomaticDimension;
// 设置估算高度
self.tableView.estimatedRowHeight = 44;
-
iOS8之前必须计算:heightForRowAtIndexPath:代理方法中
XMGStatusCell *cell; // 定义一个全局变量(因为这是一个打酱油的cell)
// 创建一个临时的cell
if (cell == nil) {
cell = [tableView dequeueReusableCellWithTdentifier:ID];
}
// 修改模型:数据源
XMGWine *wine = self.wineArray[0];
wine.money = @"¥100";
// 告诉tableView数据变了,赶紧刷新
// 全局刷新
[self.tableView reloadData];
// 局部刷新
NSArray *indexPath = @[[NSIndexPath indexPathForRow:0 inSection:0]];
// 使用前提:保证数组的个数不变
[self.tableView reloadRowsAtIndexPaths:indexPath withRowAnimation:UITableViewRowAnimationLeft];
// 插入
[self.tableView insertRowsAtIndexPaths:indexPath withRowAnimation:UITableViewRowAnimationRight];
// 删除
[self.tableView deleteRowsAtIndexPaths:indexPath withRowAnimation:UITableViewRowAnimationMiddle];
// 退出编辑模式(右侧编辑按钮,平滑退出)
self.tableView.editing = NO;
// 进入编辑模式
// self.tableView.editing = !self.tableView.isEditing; // 无动画效果
[self.tableView setEditing:!self.tableView.isEditing animated:YES]; // 带有动画效果
self.deletedButton.hidden = !self.tableView.isEditing;
// 告诉tableView在编辑模式下可以多选
self.tableView.allowsSelectionDuringEditing = YES;
- 千万不要一边遍历一边删除,因为每删除一个元素,其他元素的索引可能会发生变化
NSMutableArray *deletedWine = [NSMutableArray array];
for (NSIndexPath *indexPath in self.tableView.indexPathsForSelectedRows) {
[deletedWine addObject:self.wineArray[indexPath.row]];
}
// 修改模型
[self.wineArray removeObjectsInArray:deletedWine];
// 刷新表格
// [self.tableView reloadData];
[self.tableView deleteRowsAtIndexPaths:self.tableView.indexPathsForSelectedRows withRowAnimation:UITableViewRowAnimationAutomatic];
// 取消选中状态(在代理方法didSelectRowAtIndexPath:中写)
[tableView deselectRowAtIndexPath:indexPath animated:YES];