interviewGuide icon indicating copy to clipboard operation
interviewGuide copied to clipboard

没有按需加载

Open ghost opened this issue 9 years ago • 1 comments

pragma mark --private Method--初始化子控制器

-(void)setupChildController { for (NSInteger i = 0; i<self.currentChannelsArray.count; i++) { ContentTableViewController *viewController = [[ContentTableViewController alloc] init]; viewController.channelName = self.currentChannelsArray[i]; viewController.channelId = self.channelsUrlDictionary[viewController.channelName]; [self addChildViewController:viewController]; } }

在这一步就获取了所有数据 。。。。不太好吧

ghost avatar Jul 16 '16 03:07 ghost

这里只是设置所有子控制器,还没有加载,滑到那个页面才会进行网络请求

NotFound9 avatar Jul 16 '16 06:07 NotFound9