This commit is contained in:
2025-12-17 19:56:22 +08:00
parent 886de394d0
commit 904a6c932a
9 changed files with 16 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
//
// KBKeyboardSubscriptionFeatureMarqueeView.h
// CustomKeyboard
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 顶部功能点横向自动滚动视图
@interface KBKeyboardSubscriptionFeatureMarqueeView : UIView
/// titles/images 数量不一致时,以较小的 count 为准
- (void)configureWithTitles:(NSArray<NSString *> *)titles
images:(NSArray<UIImage *> *)images;
@end
NS_ASSUME_NONNULL_END