如何重新加载 UIView?
在调用 viewDidLoad + viewWillAppear(并显示视图)后,如何重新加载 UIView?
如果有帮助 - 我从 xib/nib 文件加载它,并期望调用该方法应该仅触发控制器上的 viewWillAppear,而不是重新加载整个 nib文件。
How do I reload a UIView after viewDidLoad + viewWillAppear have already been called (and the view displayed)?
If it helps - I'm loading it from a xib/nib file, and expect that calling the method should only trigger viewWillAppear on the controller, not to reload the whole nib file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[yourViewController.view setNeedsDisplay]
怎么样?How about
[yourViewController.view setNeedsDisplay]
?