21 lines
440 B
Objective-C
21 lines
440 B
Objective-C
//
|
|
// 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
|
|
|