これらの4つのビューコントローラをアレイに追加するにはどうすればよいですか?
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]autorelease];
ContainerViewController *container= [[[ContainerViewController alloc]init]autorelease];
self.window.rootViewController = container;
NSMutableArray *controllers = [NSMutableArray array];
for (int i=0; i<23; i++)
{
First *first = [[First alloc] init];
Second *second = [[Second alloc] init];
Third *third = [[Third alloc] init];
Fourth *fourth = [[Fourth alloc] init];
[controllers addObject:first];
[controllers addObject:second];
[controllers addObject:third];
[controllers addObject:fourth];
}
[container setSubViewControllers:controllers];
[window makeKeyAndVisible];
return YES;
インスタンスメソッドsetSubViewControllerが見つからないという黄色の警告が表示されます。戻り値のタイプはデフォルトでidになります。
手伝ってくれてありがとう。