iOS Guide 3. Configuration
3-2. 초기화
Bizpush 를 사용하기 위해 기본적인 설정값과 초기화를 AppDelegate 에서 진행
-
- Bizpush 의 사용과 설정 초기화를 위해 AppDelegate 파일에서 아래와 같이 설정
AppDelegate.m
#import "AppDelegate.h" #import "PushHandler.h" #import <BZFramework/BZFramework.h> @interface AppDelegate () @property (nonatomic, strong) PushHandler *pushHandler; @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. [BZPush push].registDelegate = self; return YES; }
- Bizpush 의 사용과 설정 초기화를 위해 AppDelegate 파일에서 아래와 같이 설정