同じインスタンスである複数の Controller を tabBarController に追加したいのですが、1 つのコントローラーとして扱われる配列の追加されたコントローラーはできません。どうすればいいですか??そして何が最善の方法ですか??これが私のコードです。
RootViewController *rootViewController = [[[RootViewController alloc]init]autorelease];
tabBarController = [[[UITabBarController alloc]init]autorelease];
[tabBarController setDelegate:self];
[tabBarController setViewControllers:[NSArray arrayWithObjects:rootViewController,rootViewController,rootViewController,rootViewController,rootViewController,nil] animated:NO];