level 2
灬ゞ宝小哲つ
楼主
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
ViewController * view =[[ViewController alloc] init];
UINavigationController * navi =[[UINavigationController alloc] initWithRootViewController:view];
self.window.rootViewController=navi;
[self.window makeKeyAndVisible];
[self helpScroll];//一直显示引导页
return YES;
}
我用了个引导页,然后imageView里当背景用的图片就显示不出来了。。请问怎么更改??
2015年11月07日 09点11分
1
// Override point for customization after application launch.
ViewController * view =[[ViewController alloc] init];
UINavigationController * navi =[[UINavigationController alloc] initWithRootViewController:view];
self.window.rootViewController=navi;
[self.window makeKeyAndVisible];
[self helpScroll];//一直显示引导页
return YES;
}
我用了个引导页,然后imageView里当背景用的图片就显示不出来了。。请问怎么更改??