これが、アプリ デリゲートのアプリケーション ロード メソッドです。
そこで、おそらくカスタム ビュー コントローラーのインスタンスを作成し、それを rootViewController としてアプリ デリゲートの didFinishLoading に割り当てます。次のような行があるはずです。
// app delegate .h file
#import "CustomViewController.h"
@interface
{
...
CustomViewController *myCustomVC;
...
}
@property (nonatomic, retain) CustomViewController *myCustomVC;
// app delegate .m file
@implementation AppDelegate
@synthesize myCustomVC;
-(BOOL)application:(UIApplication*)application didFinishLoadingWithOptions:(NSDictionary *)launchOptions
{
...
myCustomerVC = [[CustomViewController alloc] init];
[self.window setRootViewController:myCustomVC];
...
}
次に、カスタム ビュー コントローラーの viewDidLoad メソッド内で、これをテストとして実行できます。
// custom view controller .m file
-(void)viewDidLoad
{
self.view.backgroundColor = [UIColor redColor];
}