现在刚接触 ios开发,有很多问题不明白
用xcode新建个项目,默认显示AppDelegage.m 页面
不知道怎么改变起始页,使程序运行后默认显示其他页面呢,在什么地方设置
------解决方案--------------------
我也是刚开始学习ios。
------解决方案--------------------
找一本iOS入门书籍先看看吧。
------解决方案--------------------
这个太基础 还是从教学视频看起吧
------解决方案--------------------
这也要问,随便找本书,找个视频一看就会。
------解决方案--------------------
在 didFinishLaunchingWithOption:里面设置要显示的视图
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
//在这里设置你要显示的视图,你也可以在这里添加子视图
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
view.backgroundColor = [UIColor redColor];
[self.window addSubview:view];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
------解决方案--------------------
在main函数里面改变delegate 然后在delegate里面改变根view