カスタム 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 によって決定されます。