单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  AdvertiseHelper.h
//  MobileProject  处理事件在AdvertiseView里面有个NotificationContants_Advertise_Key通知,可以在首页进行获取通知,然后进行处理,比如进行跳转功能
//    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(pushToAd) name:NotificationContants_Advertise_Key object:nil];
//
//  Created by wujunyang on 16/6/14.
//  Copyright © 2016年 wujunyang. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "AdvertiseView.h"
 
@interface AdvertiseHelper : NSObject
 
+ (instancetype)sharedInstance;
 
+ (void)showAdvertiserView:(NSArray<NSString *> *)imageArray;
 
@end