Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码:
我正在尝试优化代码,出于某种原因initWithRootViewController, [self.view addSubview:fullStory.view];, ,将框架设置为视图的超框架是最大的性能障碍。知道为什么以及如何解决这个问题吗?
initWithRootViewController, [self.view addSubview:fullStory.view];,
对于高分辨率图片here和here。
view很难说到底发生了什么,但是当您访问视图控制器的属性时,看起来会发生一些“滞后” 。
view
由于这是一个延迟加载的属性,它调用loadView然后viewDidLoad. 也许这些方法中有些东西需要一段时间。
loadView
viewDidLoad
此外,我们无法判断displayStory执行是否正常,因为我们不知道它的作用。
displayStory