| 1234567891011121314151617181920 |
- //
- // AdViewController.h
- // 千模
- //
- // Created by Drew on 2019/1/4.
- // Copyright © 2019 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface AdViewController : UIViewController
- @property(nonatomic, strong) UIImageView *img;
- @property(nonatomic, strong) UILabel *label;
- @property(nonatomic, strong) NSDictionary *model;
- @property(nonatomic, copy) void (^callback)();
- @end
- NS_ASSUME_NONNULL_END
|