//
|
// 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
|