在 iPad 的情况下,查找 UITableViewCell 中 contentView 的宽度
在 iPAD 上,当您创建新的 UITableViewCell 时,contentView 宽度设置为 320。有没有办法获得正确的宽度?我无法使用当前视图的宽度,因为表格单元格不跨越视图的整个宽度。任何帮助将不胜感激。
On iPAD when you create new UITableViewCell the contentView width set for 320. Is there a way to get the right width? I can't use the width of the current view as the table cells do not span the entire width of the view. Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经使用以下方法解决了这个问题:
I've solved this issue using:
这为
contentView
提供了正确的宽度。如果最初未调用[superlayoutSubviews]
,则contentView
框架未正确设置。This gives the right width for
contentView
. If[super layoutSubviews]
is not called initially then thecontentView
frame is not set correctly.