UIViewControllers
私の1つで、UITabBarController
私はこれを行います:
MyTabBarController *myTBC = (MyTabBarController*)self.parentViewController;
for(UIViewController *anyVC in myTBC) {
if([anyVC.class isKindOfClass:[SecondViewController class]])
sVC = (SecondViewController *)anyVC;
sVC.userLocation = userLocation;
}
しかし、for...lineで次のような警告が表示されます。
コレクション式タイプMyTabBarControllerは、countByEnumeratingWithState:objects:countに応答しない場合があります。
MyTabBarController
のサブクラスですUITabBarController
。