自定义单元格和详细文本标签
就是想问这个问题。我可以在自定义单元格中使用detailTextLabel吗?我想要在我的自定义单元格中显示其他信息。当我尝试使用详细文本标签时,没有显示任何内容。
自定义单元格 .m 代码:
- (void)setUseDarkBackground:(BOOL)flag{
if (flag != useDarkBackground || !self.backgroundView)
{
useDarkBackground = flag;
NSString *backgroundImagePath = [[NSBundle mainBundle] pathForResource:useDarkBackground ? @"BGDark" : @"BGLight" ofType:@"png"];
UIImage *backgroundImage = [[UIImage imageWithContentsOfFile:backgroundImagePath] stretchableImageWithLeftCapWidth:0.0 topCapHeight:1.0];
self.backgroundView = [[[UIImageView alloc] initWithImage:backgroundImage] autorelease];
self.backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.backgroundView.frame = self.bounds;
}}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想显示更多详细信息,您可以在自定义单元格中再添加一个 UILabel
If you want to display additional details, you can take one more UILabel in your custom cell
您还可以使用
UITableViewCell
的detailTextLabel
。请参阅有关在单元格中使用
detailTextLabel
的博客文章。在 UITableView 中显示多行文本单元格
you could also use the
detailTextLabel
ofUITableViewCell
.Have look to blog post for using
detailTextLabel
with cell.Show multiline text cells in UITableView