1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //
| // AdvertiseView.h
| // MobileProject 启动广告视图
| //
| // Created by wujunyang on 16/6/14.
| // Copyright © 2016年 wujunyang. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| UIKIT_EXTERN NSString *const NotificationContants_Advertise_Key;
|
| @interface AdvertiseView : UIView
|
| /** 显示广告页面方法*/
| - (void)show;
|
| /** 图片路径*/
| @property (nonatomic, copy) NSString *filePath;
|
| @end
|
|