1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // LDBannerVewi.h
- // YouHuiProject
- //
- // Created by liuxueli on 2019/2/25.
- // Copyright © 2019 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LDBannerVewi : UIView
- /**
- * 主图
- */
- @property (nonatomic, strong) UIImageView *mainImageView;
- /**
- * 用来变色的view
- */
- @property (nonatomic, strong) UIView *coverView;
- @property (nonatomic, copy) void (^didSelectCellBlock)(NSInteger tag, LDBannerVewi *cell);
- /**
- 设置子控件frame,继承后要重写
-
- @param superViewBounds <#superViewBounds description#>
- */
- - (void)setSubviewsWithSuperViewBounds:(CGRect)superViewBounds;
- @end
- NS_ASSUME_NONNULL_END
|