在AppDelegate中进行判断 //引导页 if(![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"]){ [[NSUserDefaults standardUserDefaults] setBool:YES for
分类:
其他好文 时间:
2016-03-09 13:02:50
阅读次数:
123
#import "AppDelegate.h" //extension @interface AppDelegate ()<UITextFieldDelegate> @end @implementation AppDelegate - (void)dealloc { self.window = ni
分类:
其他好文 时间:
2016-03-09 12:59:01
阅读次数:
131
#import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (void)dealloc { self.window = nil; [super dealloc]; } - (BOOL)app
分类:
其他好文 时间:
2016-03-09 12:50:51
阅读次数:
133
#import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (void)dealloc { self.window = nil; [super dealloc]; } - (BOOL)app
分类:
其他好文 时间:
2016-03-09 12:42:59
阅读次数:
157
#import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (void)dealloc { self.window = nil; [super dealloc]; } - (BOOL)app
分类:
其他好文 时间:
2016-03-09 12:31:55
阅读次数:
126
一般来说,若需要独立添加一个UIView,使其覆盖于整个应用窗口之上,是这样实现的: AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication] delegate]; [app.window addSubview:view
分类:
其他好文 时间:
2016-03-02 13:01:30
阅读次数:
137
1、在appdelegate.m中找到“application:didFinishLaunchingWithOptions:”通过NSUserDefaults来进行判断if(![[NSUserDefaultsstandardUserDefaults]boolForKey:@"everLaunched"]){[[NSUserDefaultsstandardUserDefaults]setBool:YESforKey:@"everLaunched"];[[NSUserDefaultss..
分类:
移动开发 时间:
2016-03-01 19:18:58
阅读次数:
178
前言 今天将一些简化工程代码的宏定义拿出来分享一下,自定义一些宏可以有效的简化代码,提高编码效率。 Application #define APPLICATION [UIApplication sharedApplication] #define APPDLE (AppDelegate*)[APPL
分类:
移动开发 时间:
2016-02-29 16:22:54
阅读次数:
258
#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App
分类:
移动开发 时间:
2016-02-29 10:32:49
阅读次数:
216
当用户点击收到的推送消息时候,我希望打开APP,并且跳转到对应的界面,这就需要在AppDelegate里面对代理方法进行处理。 当用户点击推送消息打开APP的时候会调用 - (BOOL)application:(UIApplication*)application didFinishLaunchin
分类:
移动开发 时间:
2016-02-27 20:38:18
阅读次数:
2172