IOS-Frameworks-UIKit-UIApplication-UIApplicationDelegate

来源:互联网 发布:手机域名 编辑:程序博客网 时间:2024/05/29 18:39

//  AppDelegate.m

//  Aapp

//

//  Created by AnyMail on 15/6/11.

//  Copyright (c) 2015 AnyMail. All rights reserved.

//


#import "AppDelegate.h"


@interface AppDelegate () <UIApplicationDelegate>


@end


@implementation AppDelegate


//01:¥[application] |ˌæplɪˈkeɪʃn| noun 申请、实施、应用、用途

//02:¥[launch] |lɔːntʃ| noun verb 下水、发射、发起、发动、实施、上市、发行

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // Override point for customization after application launch.

    return YES;

}

/*

 03:¥[custom] |ˈkʌstəm| noun Countable(convention)习俗 it is the custom to ...是风俗习惯Countable(personal habit)习惯 it is her custom to ...她的习惯是

 04:¥[customer] |ˈkʌstəmə(r)| noun (client)顾客 the customer is always right顾客永远是对的 colloquial (person)家伙 she's a difficult customer她这个人很难对付

 05:¥[customize] |ˈkʌstəmaɪz| transitive verb (make)定做 (adapt)[按顾客要求]改造

 06:¥[resign] |rɪˈzaɪn| A.verb 辞职 B.verb辞去

 07:¥[active] |ˈæktɪv| adjective ①积极的、活跃的 to be active in积极参加

 08:¥[occur] |əˈkɜː(r)| 发生、来临、爆发、出现、存在、被想到 to occur to [somebody]被某人想到

 09:¥[certain] |ˈsɜːtn| adjective 确定的、to make certain (of [something])弄清楚(某事物)、确保(某事物)

 10:¥[temporary] |ˈtemprəri, American -pəreri| adjective 短期的、临时的

 11:¥[interruption] |ˌɪntəˈrʌpʃn| noun 插嘴 without interruptions不被打断、阻断

 12:¥[SMS]Short Message Service:短信息服务

 13:¥[transition] |ˌtrænˈzɪʃn,-ˈsɪʃn| noun Countable and uncountable过渡、过渡期、in a state of transition 处于转变状态的

 14:¥[pause] |pɔːz| noun A.暂停 she spoke for an hour without a pause她一直不停地讲了一个小时 B.intransitive verb 暂停

 */

- (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.

}

/*

 15:¥[invalidate] |ɪnˈvælɪdeɪt| verb 使无效、使作废

 16:¥[restore] |rɪˈstɔː(r)| verb 修复、使复职、把放回、使复元

 17:¥[terminate] |ˈtɜːmɪneɪt| verb 终止、结束、停止、解雇

 18:¥[quit] |kwɪt| verb to quit doing [something] 停止doing [something]to quit smoking戒烟、辞去、离开

 */

- (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.

}

/*

 19:¥[undo] |ʌnˈduː| verb 解开、打开、消除、what's done cannot be undone覆水难收、毁灭、取消

 */

- (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.

}

/*

 20:¥[previously] |ˈpriːvɪəsli| adverb 以前、之前、two years/days previously两年/两天前

 */

- (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.

}

/*

 21:¥[appropriate] A. |əˈprəʊprɪət| adjective 合适的 to be appropriate for or to [somebody]/[something]适合某人/某事物、有关的 

 */

- (void)applicationWillTerminate:(UIApplication *)application {

    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.

}


@end

0 0
原创粉丝点击