GuideView.h 512 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // GuideView.h
  3. // 创维盒子
  4. //
  5. // Created by APPLE on 2023/9/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface GuideView : UIView
  10. /**
  11. * @brief 初始化引导页试图
  12. *
  13. * @param tips 上方提示内容
  14. *
  15. * @param imageName 图片名称
  16. *
  17. * @param index 图片位置
  18. *
  19. */
  20. - (id)initWithTips:(NSString *)tips imageName:(NSString *)imageName index:(NSInteger)index;
  21. //点击了跳过
  22. @property (nonatomic,copy) void (^didClickButton)(void);
  23. @end
  24. NS_ASSUME_NONNULL_END