BBASMAdLandingPageTailFrameViewDelegate.h
741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// BBASMAdLandingPageTailFrameViewDelegate.h
// BBAMNP
//
// Created by xutingting on 2019/9/26.
//
#ifndef BBASMAdLandingPageTailFrameViewDelegate_h
#define BBASMAdLandingPageTailFrameViewDelegate_h
@protocol BBASMAdLandingPageTailFrameViewDelegate <NSObject>
@optional
/**
* @brief 广告主头像点击
*/
- (void)adTailAuthorHeadClicked;
/**
* @brief 广告主名称点击
*/
- (void)adTailAuthorNameClicked;
/**
* @brief 按钮点击
*/
- (void)adTailDetailButtonClicked;
/**
* @brief 其他区域点击
*/
- (void)adTailOtherAreaClicked;
- (void)viewSetImageWithURL:(NSURL *)url view:(UIImageView *)view;
- (CGFloat)getBottomOfView:(UIView *)view;
@end
#endif /* BBASMAdLandingPageTailFrameViewDelegate_h */