Snail—UI学习之初识

在AppDelegate.m中有几个默认存在的函数

//
//  WJJAppDelegate.m
//  课上练习
//
//  Created by Snail on 15-7-20.
//  Copyright (c) 2015年 Snail. All rights reserved.
//

#import "WJJAppDelegate.h"

@implementation WJJAppDelegate

//程序的入口 只允许一次
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{   
    // [[UIScreen mainScreen] bounds]];    适应当前屏幕的大小
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    //设置window的背景颜色为白色
    self.window.backgroundColor = [UIColor whiteColor];
    //让window执行显示
    [self.window makeKeyAndVisible];
    return YES;
}

//挂起程序
- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

//程序进入后台
- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


//程序将要进入前台
- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

//当前APP已经能够看到界面  进入前台
- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end

这样我们知道了程序的入口,但是在以后的开发过程中,我们不会直接在AppDelegate.m中写很多的类,而是新建一个UIViewController,把自己创建的一个UIViewController赋值给我们此程序的根视图控制器

接下来,COMMAND+N 新建一个类WJJRootUIViewController 继承于UIViewController

引入头文件后,在下面这个方法这样写

#import "WJJAppDelegate.h"
#import "WJJRootViewController.h"

@implementation WJJAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //当前的window 开辟内存 并用frame初始化
    //[[UIScreen mainScreen] bounds]] 适应当前屏幕大小
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    
    self.window.rootViewController = [[WJJRootViewController alloc] init];
    //设置当前window 的背景色
    self.window.backgroundColor = [UIColor cyanColor];
    //让这个windo执行
    [self.window makeKeyAndVisible];
    return YES;
}

这样的话,我们的根视图控制器变成了WJJRootUIVIewController

其他不动,我们直接到WJJRootUIViewController.m文件中

#import "WJJRootViewController.h"

@interface WJJRootViewController ()

@end

@implementation WJJRootViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

//此视图控制器的入口 入口只执行一次 其他的进入后台、进入前台等等是在调用下面四个周期函数
- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view.
    //把背景颜色设置为红色
    self.view.backgroundColor = [UIColor redColor];
}

//视图已经出现
- (void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
}

//视图将要出现
- (void)viewWillAppear:(BOOL)animated{
    [super viewWillAppear:animated];
}

//视图将要消失
- (void)viewWillDisappear:(BOOL)animated{
    [super viewWillDisappear:animated];
}

//视图已经消失
- (void)viewDidDisappear:(BOOL)animated{
    [super viewDidDisappear:animated];
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值