I have a list of items in a UITableView, when an item is selected I open a ViewController with a segmented control that is supposed to switch between three different ViewControllers.
我正在使用 ContainerView 来查看 ViewControllers 以及三个 ViewControllers 的数组。
问题是当从表中选择项目时,所有三个 ViewController 都需要初始化并添加到数组中。由于其中一些 ViewController 需要从核心数据中获取一些数据,因此当用户从表中选择一个项目时,延迟是显而易见的。
有没有更好的方法来执行这种可以提高性能的分段控制实现。