更改 iPhone 上 UITableViewController 的宽度
有谁知道如何更改 uitableviewcontroller 的宽度?我想也许我可以在界面生成器中完成它,因为我无法在代码中弄清楚它。
谢谢!
Does anyone know how to change the width of a uitableviewcontroller? I was thinking maybe I could do it in interface builder because I can't figure it out in the code.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
视图控制器没有任何与其关联的大小属性(该信息存储在视图中)。但是,您可以通过设置“frame”属性或更新界面生成器中的属性(“工具”>“检查器”>“大小”)来更改 UITableView 的宽度。如果 UIView 中包含 UITableView,则应该能够在界面生成器中拖动来调整大小。
View controllers do not have any size attributes associated with them (that information is stored within the view). However, you can change the width of your UITableView by setting 'frame' property or by updating the properties in interface builder (Tools > Inspector > Size). If you have a UITableView contained within a UIView, you should be able to drag to resize in interface builder.
我认为更改视图控制器的宽度没有意义。我认为你想改变视图的宽度,比如 UITableView。
I don't think it makes sense to change the width of a View Controller. I think you want to change the width of a view, like UITableView.