我正在使用 iPad 应用程序。我正在使用 aUITableView
创建一个表格并UIImageView
在每个单元格中插入 2 s。我尝试在两个UIImageView
s 中设置图像,但索引路径值从 0、1、2、3、4 等开始...
每个UIImageView
在第一个单元格中都有相同的图像。如何解决这个问题?
例子:
- (void)viewDidLoad
{
[super viewDidLoad];
// ImageArray have 5images;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [ImageArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
imgView1.image = [imageArray objectAtIndex:indexPath.row];
imgView2.image = [imageArray objectAtIndex:indexPath.row];
}