在我的一个中UIViewControllers
,UITabBarController
我这样做:
MyTabBarController *myTBC = (MyTabBarController*)self.parentViewController;
for(UIViewController *anyVC in myTBC) {
if([anyVC.class isKindOfClass:[SecondViewController class]])
sVC = (SecondViewController *)anyVC;
sVC.userLocation = userLocation;
}
但我在 for... 行收到警告说:
集合表达式类型 MyTabBarController 可能无法响应 countByEnumeratingWithState:objects:count。
MyTabBarController
是 的子类UITabBarController
。