我想要他们自定义单元格,因为我需要在每个单元格中居中UIImageVIEws,因为它们将有按钮图像而没有其他内容.我创建了一个带有UIImageVIEw插座的MyCustomCell类,并将其连接到插座.
然后在tablevIEw控制器类中我这样做了:
#pragma mark - tableVIEw Cell Methods- (UItableVIEwCell*)tableVIEw:(UItableVIEw *)tableVIEw cellForRowAtIndexPath:(NSIndexPath *)indexPath { MyCustomCell *cell = [[MyCustomCell alloc] init]; switch (indexPath.row) { case 0: // Use Custom Cell cell.thumbnailImageVIEw.image = [UIImage imagenamed:@"button.png"]; break; case 1: [cell setAccessoryType:UItableVIEwCellAccessorydisclosureIndicator]; // USE IMAGE INSTEAD cell.thumbnailImageVIEw.image = [UIImage imagenamed:@"button1.png"]; break; case 2: cell.thumbnailImageVIEw.image = [UIImage imagenamed:@"button2.png"]; break; case 3: cell.thumbnailImageVIEw.image = [UIImage imagenamed:@"button3.png"]; break; case 4: cell.thumbnailImageVIEw.image = [UIImage imagenamed:@"Search.png"]; break; default: break; } return cell;}
MyCustomCell.m:
- (ID)initWithStyle:(UItableVIEwCellStyle)style reuseIDentifIEr:(Nsstring *)reuseIDentifIEr{ self = [super initWithStyle:style reuseIDentifIEr:reuseIDentifIEr]; if (self) { } return self;}- (voID)setSelected:(BOol)selected animated:(BOol)animated{ [super setSelected:selected animated:animated]; // Configure the vIEw for the selected state}
细胞显示空白.当我使用UItableVIEwCell代替MyCustomCell时,它工作正常.所以我不确定为什么它现在失败了.
解决方法 我没有看到您在MyCustomCell.m中引用自定义单元格的.xib文件的任何位置.您必须告诉该类要加载哪个.xib文件.查看以下教程,该教程演示了一种从.xib文件加载单元格的方法(在自定义单元类中):Creating custom UITableViewCell from XIBs – step by step tutorial
这个问题显示了另一种方法(在cellForRowAtIndexPath中):
how to create custom tableViewCell from xib
此外,如果您在cellForRowAtIndexPath中重新创建静态单元格,则不会使用静态单元格.您将丢失在Interface Builder中设置的任何内容.考虑放弃静态单元格.您可以在设置图像的同一位置设置所有单元格属性.
最后,如果您放弃静态单元格方法,请考虑在与表视图相同的视图控制器中创建自定义单元格(标准UItableVIEw具有用于此目的的占位符单元格),并以标准方式将自定义单元格出列.然后,没有额外的.xib加载,因此它将自动处理.有关详细信息,请参阅我之前的答案creating a custom table view cell.
总结以上是内存溢出为你收集整理的ios – 如何使用自定义静态UITableViewCells在单元格中显示图像?全部内容,希望文章能够帮你解决ios – 如何使用自定义静态UITableViewCells在单元格中显示图像?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)