0

TableView があり、すべてのセルに異なる画像を設定したいと考えています。すべてのセルに同じ画像が表示されるようになりました

これが私のコードです:

@implementation SecondViewController

{
 NSArray *tableData;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
     tableData = [NSArray arrayWithObjects:@"Restore Edilen Evler", @"Sakarya Kenarı", @"Tekke Seyir Tepesi", @"Kilise",@"Akkaya Şelalesi",@"Kaplıcalar",nil];

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [tableData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"SimpleTableItem";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    cell.textLabel.font = [UIFont boldSystemFontOfSize:14];
    cell.textLabel.numberOfLines = 2;

if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
    cell.imageView.image = [UIImage imageNamed:@"aktivite4.png"]; 

    return cell;
}
@end
4

1 に答える 1