iOS Guide 3. Configuration

3-1. Bizpush Delegate 설정
Bizpush API 에서 메시지 도착 시 해당 Delegate 의 이벤트 호출

    #import <UIKit/UIKit.h>
    #import <BZFramework/BZFramework.h>
    @interface ViewController : UIViewController <BZHttpClientDelegate>
    
    @end
    - (void)viewDidLoad {
    [super viewDidLoad];
    ...
    [BZPush push].pushDelegate = self;
    }
    -(void)arriveMsg:(NSMutableArray *)list{
    }