| 123456789101112131415161718192021 |
- //
- // NSObject+MOLaunchImage.m
- // LBLaunchImageAdDemo
- //
- // Created by gold on 17/4/1.
- // Copyright © 2017年 Bison. All rights reserved.
- //
- #import "NSObject+MOLaunchImage.h"
- @implementation NSObject (MOLaunchImage)
- + (void)mo_makeLBLaunchImageAdView:(void(^)(MOLaunchImageAdView *))block{
-
- MOLaunchImageAdView *imgAdView = [[MOLaunchImageAdView alloc]init];
- imgAdView.mo_clickBlock = ^(const MOClickType type) {
-
- };
- block(imgAdView);
- }
- @end
|