メソッドcell.titleLabel
のcell == nil
部分にaのフォントを設定する必要がありますか?cellForRowAtIndexPath:
または後?また、いくつかのラベルとプログラムを追加していUIImage
ます。は変更されUIImage
ませんが、ラベルの値は変更されます。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifier = @"identifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease];
[cell.titleLabel setFont:[UIFont fontWithName: @"Asap-Bold" size: 15.0f]];
[cell.descriptionLabel setFont:[UIFont fontWithName: @"Asap-Regular" size: 10.0f]];
}
**// or should it go here?**
return cell;
}
助けてくれてありがとう。