在单元格内添加子视图

发布于 2024-11-08 23:11:05 字数 95 浏览 0 评论 0原文

我试图在自定义 UITableViewCells 中添加视图。我尝试使用 [cell.contentView addSubview] 方法,但视图没有出现。我必须做什么呢。谢谢

Im trying to add views inside custom UITableViewCells. I tried using the [cell.contentView addSubview] method but the views dont appear. What is it I have to do. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少情深 2024-11-15 23:11:05

如果您使用自定义单元格,则转到自定义单元格类,然后...

UIView *contentView;
contentView =[[UIView alloc]init];

然后设置视图的框架...
最后

[self.contentView addSubview:contentView];

if you are using custom cell then go to your custom cell class and ...

UIView *contentView;
contentView =[[UIView alloc]init];

then set frames of your view...
finally

[self.contentView addSubview:contentView];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文