25 lines
635 B
Objective-C
25 lines
635 B
Objective-C
//
|
|
// KBKeyboardRowContainerBuilder.h
|
|
// CustomKeyboard
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class KBKeyboardRowConfig;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KBKeyboardRowContainerBuilder : NSObject
|
|
|
|
- (void)rebuildRowContainersForRows:(NSArray<KBKeyboardRowConfig *> *)rowConfigs
|
|
inContainer:(UIView *)container
|
|
rowViews:(NSMutableArray<UIView *> *)rowViews
|
|
rowSpacing:(CGFloat)rowSpacing
|
|
topInset:(CGFloat)topInset
|
|
bottomInset:(CGFloat)bottomInset;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|