将图像添加到表格单元格(iOS)

前端之家收集整理的这篇文章主要介绍了将图像添加到表格单元格(iOS)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试做类似于Twitter或Facebook的事情.

解决方法

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

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

   cell.textLabel.text = @"I'm a UITableViewCell!";
   cell.imageView.image = [UIImage imageNamed:@"MyReallyCoolImage.png"];

   return cell;
}

Thomas Moore

adding images to UItableView

原文链接:https://www.f2er.com/iOS/330285.html

猜你在找的iOS相关文章