I created a controller called Login with the xib file. I'm wanna make it the start screen. so in my app delegate,
H file:
UIWindow *login;
@property (nonatomic, retain) IBOutlet UIWindow *login;
M file:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
[self.login makeKeyAndVisible];
return YES;
}
am I missing anything like linking to interface builder? am getting a blank screen