12345678910111213141516171819202122232425262728293031 |
- //
- // GuideView.h
- // 创维盒子
- //
- // Created by APPLE on 2023/9/18.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface GuideView : UIView
- /**
- * @brief 初始化引导页试图
- *
- * @param tips 上方提示内容
- *
- * @param imageName 图片名称
- *
- * @param index 图片位置
- *
- */
- - (id)initWithTips:(NSString *)tips imageName:(NSString *)imageName index:(NSInteger)index;
- //点击了跳过
- @property (nonatomic,copy) void (^didClickButton)(void);
- @end
- NS_ASSUME_NONNULL_END
|