UIViewController 边距
我有一个简单的问题:如何从自定义 UINavigationController 调整 UIViewController 视图的大小,因为简单地设置它的框架是行不通的。
我尝试在我的 UIViewController 类别中覆盖所有 UIViews 的 setFrame,但效果不佳...
在 tableViewController 中我知道我可以设置>tableview's contentInset
,但这并没有真正帮助我。
I have this a simple question: How do I resize a UIViewController's
view from a custom UINavigationController
, since it's not working to simply set it's frame.
I have tried to, in my UIViewController
category, override setFrame of all UIViews
, which didn't go well...
In a tableViewController I know I can set the tableview's
contentInset
, but that doesn't really help me here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以向
UIViewController
的视图的子视图添加另一个视图。然后改变这个内部视图的框架就很容易了。I think you can add another view to your
UIViewController
's view's subviews. Then change the frame of this internal view is easy.