This commit is contained in:
2025-12-17 19:08:44 +08:00
parent 4a26419e67
commit 8bad475288
7 changed files with 476 additions and 363 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