当view离开storyboard时,initWithFrame就不会被调用了,But,当view离开storyboard时,awakeFromNib(在view.m文件里)会被调用,可以在它里面设置当旋转手机时,重绘图像self.contentMode = UIViewContentModeRedraw(self代表uiview)
awakefromnib()由storyboard产生,不过这个时候outlets都没有连接起来
本文探讨了视图离开Storyboard时的初始化流程及其在旋转手机时重绘图像的方法,重点介绍了awakeFromNib函数的作用及如何通过设置self.contentMode为UIViewContentModeRedraw来实现重绘。
当view离开storyboard时,initWithFrame就不会被调用了,But,当view离开storyboard时,awakeFromNib(在view.m文件里)会被调用,可以在它里面设置当旋转手机时,重绘图像self.contentMode = UIViewContentModeRedraw(self代表uiview)
awakefromnib()由storyboard产生,不过这个时候outlets都没有连接起来
1300

被折叠的 条评论
为什么被折叠?