我把图像从网络服务中注入活力。 图像将装上(有<代码>。 WithData:data]; and be place in a UIImageView
in my Customs UITableViewCell
using the setImage
。 我在界面建筑商中给出了27个宽度和高度的图像,并告诉他“Aspectfit”(把所有其他人推为tw),但图像确实如此。 只是(在方面,我想)填充观察组。
我曾尝试过很多事情,如重新塑造形象(即工作),但我可以把图象列入我门外展示的图象),将UIImageView重新定位。 但我看不到......。 有些人认为我做错了什么?
修改单元的法典:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"NewsTableViewCell" owner:self options:nil];
cell = self.tableCell;
self.tableCell = nil;
}
viArticle *article = [self.viData.articles objectAtIndex:indexPath.row];
UILabel *label;
label = (UILabel *)[cell viewWithTag:1];
label.text = article.title;
label = (UILabel *)[cell viewWithTag:2];
label.text = [NSString stringWithFormat:@"%@ %@", article.time, article.type];
if (article.image != nil) {
UIImageView *imageView;
imageView = (UIImageView *)[cell viewWithTag:0];
[imageView setImage:article.image];
}
return cell;
}
这一观点:
以及环境: