Files
keyboard/keyBoard/Class/Home/V/HomeHeadView.h
2025-11-07 14:21:03 +08:00

24 lines
490 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// HomeHeadView.h
// keyBoard
//
// Created by Mac on 2025/11/6.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface HomeHeadView : UIView
/// 点击底部购买按钮回调
@property (nonatomic, copy) void (^onTapBuy)(void);
/// 配置4个功能按钮标题与图片可选
/// 若 images 为空会使用一个渐变占位图
- (void)configureFeatureTitles:(NSArray<NSString *> *)titles images:(NSArray<UIImage *> * _Nullable)images;
@end
NS_ASSUME_NONNULL_END