1

看来我的 tableview 代表根本不会显示我的图像。该图像在我添加到视图控制器的 UIImageView 上显示良好。如果这些信息有帮助,我正在使用界面生成器中的表格视图。

  - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView setDelegate:self];
[tableView setDataSource:self];
static NSString *CellIdentifier = @"Cell";


UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

cell.accessoryView = [[UIImageView alloc] initWithImage:myimage];

return cell;

}

4

2 回答 2

1

您需要在 viewDidLoad 方法和 .h 文件中设置委托和数据源,而不是 tableview 本身的委托方法。

编辑:

还要确保添加了所有代表方法

这些代表是:

// Return the number of sections
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

// Return the number of rows
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 5;
}

//filling of tableview
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

}

//pressing of a row
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

}
于 2013-05-29T22:25:02.860 回答
1

interface builder尝试通过, 或在viewDidLoad方法中设置委托和数据源。

-(void)viewDidLoad{
self.tableView.delegate = self;
self.tableView.dataSource = self;
//...
}

另外,请确保该myImage对象不是nil

如果我没记错的话,defaultstyle 有一个 imageView 属性。尝试:

cell.imageView.image = [UIImage imageNamed:@"image.png"];
于 2013-05-29T22:27:36.777 回答