我正在创建一个使用自定义 UITableViewCell 类的 UITableView。UITableViewCell 使用它自己的方法根据 indexPath 和选定的索引进行布局。
代码如下: AgendaView.h TableViewDelegate 方法
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
EventInfoCell *cell = [tableView dequeueReusableCellWithIdentifier:@"infoCell"];
if(cell == nil){
cell = [[EventInfoCell alloc]initWithStyle:0 reuseIdentifier:@"infoCell"];
}
cell.frame = CGRectMake(0, 0, 320, [self tableView:tableView heightForRowAtIndexPath:indexPath]);
cell.selectedBackgroundView = nil;
cell.delegate = self;
TimerEvent *event = [_eventsArray objectAtIndex:indexPath.row];
EventInfo *info = [event valueForKey:@"eventInfo"];
NSDateFormatter *df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"h:mma"];
cell.timeLabel.text = [NSString stringWithFormat:@"%@",[df stringFromDate:event.date]];
cell.titleField.text = [info title];
cell.bgImageView.frame = cell.frame;
cell.countdownLabel.text = [self getCountdown:event];
if (_selectedIndex == indexPath.row){
[cell layoutSelected:YES editing:[tableView isEditing]];
if ([info location])
cell.locationField.text =[NSString stringWithFormat:@"@%@",[info location]];
else
cell.locationField.text = @"Location";
if ([info notes])
cell.notesView.text = [info notes];
else
cell.notesView.text = @"Notes";
}else
[cell layoutSelected:NO editing:NO];
return cell;
}
这是布局单元格的可接受方式吗?或者我应该为不同的单元格布局创建不同的单元格子类?如果有帮助,当被触摸时单元格会展开以显示更多信息,这就是我让子类处理它自己的布局的原因。
图片:http ://tinypic.com/r/2vjpi12/6
单元格信息由 tableView:cellForRowAtIndexPath 期间分配的 TimerEvent/Info 确定。