Files
keyboard/CustomKeyboard/View/KBFunctionView.m

597 lines
26 KiB
Mathematica
Raw Normal View History

2025-10-28 14:30:03 +08:00
//
// KBFunctionView.m
// CustomKeyboard
//
// Created by Mac on 2025/10/28.
//
#import "KBFunctionView.h"
2025-11-04 16:37:24 +08:00
#import "KBResponderUtils.h" // UIInputViewController
2025-10-28 14:30:03 +08:00
#import "KBFunctionBarView.h"
#import "KBFunctionPasteView.h"
#import "KBFunctionTagCell.h"
#import "Masonry.h"
2025-10-30 20:23:34 +08:00
#import <MBProgressHUD.h>
2025-10-30 20:46:54 +08:00
#import "KBFullAccessGuideView.h"
2025-11-03 13:25:41 +08:00
#import "KBFullAccessManager.h"
2025-11-04 21:01:46 +08:00
#import "KBSkinManager.h"
#import "KBURLOpenBridge.h" // openURL:
2025-11-11 20:24:13 +08:00
#import "KBStreamTextView.h" //
2025-11-12 16:03:30 +08:00
#import "KBStreamOverlayView.h" //
#import "KBFunctionTagListView.h"
2025-11-12 14:18:56 +08:00
#import "KBStreamFetcher.h" //
2025-10-28 14:30:03 +08:00
2025-11-12 16:03:30 +08:00
@interface KBFunctionView () <KBFunctionBarViewDelegate, KBStreamOverlayViewDelegate, KBFunctionTagListViewDelegate>
2025-10-28 14:30:03 +08:00
// UI
@property (nonatomic, strong) KBFunctionBarView *barViewInternal;
@property (nonatomic, strong) KBFunctionPasteView *pasteViewInternal;
2025-11-12 16:03:30 +08:00
@property (nonatomic, strong) KBFunctionTagListView *tagListView;
2025-10-28 14:30:03 +08:00
@property (nonatomic, strong) UIView *rightButtonContainer; //
@property (nonatomic, strong) UIButton *pasteButtonInternal;
@property (nonatomic, strong) UIButton *deleteButtonInternal;
@property (nonatomic, strong) UIButton *clearButtonInternal;
@property (nonatomic, strong) UIButton *sendButtonInternal;
2025-11-12 16:03:30 +08:00
// +
@property (nonatomic, strong, nullable) KBStreamOverlayView *streamOverlay;
2025-11-11 20:24:13 +08:00
2025-11-12 14:18:56 +08:00
//
@property (nonatomic, strong, nullable) KBStreamFetcher *streamFetcher;
@property (nonatomic, assign) BOOL streamHasOutput; // \t
2025-11-12 16:49:19 +08:00
@property (nonatomic, strong, nullable) NSNumber *loadingTagIndex; // loadingindex
@property (nonatomic, copy, nullable) NSString *loadingTagTitle;
2025-11-12 13:43:48 +08:00
2025-10-28 14:30:03 +08:00
// Data
@property (nonatomic, strong) NSArray<NSString *> *itemsInternal;
2025-10-29 15:49:43 +08:00
//
@property (nonatomic, strong) NSTimer *pasteboardTimer; // 线
@property (nonatomic, assign) NSInteger lastHandledPBCount; // changeCount
2025-10-28 14:30:03 +08:00
@end
@implementation KBFunctionView
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
2025-11-04 21:01:46 +08:00
// 使
[self kb_applyTheme];
2025-10-28 14:30:03 +08:00
[self setupUI];
[self reloadDemoData];
2025-10-29 15:49:43 +08:00
//
_lastHandledPBCount = [UIPasteboard generalPasteboard].changeCount;
// 访访 TCC/XPC
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(kb_fullAccessChanged) name:KBFullAccessChangedNotification object:nil];
2025-10-28 14:30:03 +08:00
}
return self;
}
2025-11-04 21:01:46 +08:00
#pragma mark - Theme
- (void)kb_applyTheme {
KBSkinManager *mgr = [KBSkinManager shared];
UIColor *accent = mgr.current.accentColor ?: [UIColor colorWithRed:0.77 green:0.93 blue:0.82 alpha:1.0];
BOOL hasImg = ([mgr currentBackgroundImage] != nil);
self.backgroundColor = hasImg ? [accent colorWithAlphaComponent:0.65] : accent;
}
2025-10-29 15:49:43 +08:00
- (void)dealloc {
[self stopPasteboardMonitor];
2025-11-12 13:43:48 +08:00
[self kb_stopNetworkStreaming];
[[NSNotificationCenter defaultCenter] removeObserver:self];
2025-10-29 15:49:43 +08:00
}
2025-10-28 14:30:03 +08:00
#pragma mark - UI
- (void)setupUI {
// 1. Bar
[self addSubview:self.barViewInternal];
[self.barViewInternal mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.equalTo(self);
make.top.equalTo(self.mas_top).offset(6);
make.height.mas_equalTo(48);
}];
//
[self addSubview:self.rightButtonContainer];
[self.rightButtonContainer mas_makeConstraints:^(MASConstraintMaker *make) {
2025-11-12 17:55:59 +08:00
make.right.equalTo(self.mas_right).offset(-6);
2025-10-28 14:30:03 +08:00
make.top.equalTo(self.barViewInternal.mas_bottom).offset(8);
make.bottom.equalTo(self.mas_bottom).offset(-10);
make.width.mas_equalTo(72);
}];
//
[self.rightButtonContainer addSubview:self.pasteButtonInternal];
[self.rightButtonContainer addSubview:self.deleteButtonInternal];
[self.rightButtonContainer addSubview:self.clearButtonInternal];
[self.rightButtonContainer addSubview:self.sendButtonInternal];
//
2025-10-28 14:30:03 +08:00
CGFloat smallH = 44;
CGFloat bigH = 56;
// 10 276 8 AutoLayout
CGFloat vSpace = 8;
2025-10-28 14:30:03 +08:00
[self.pasteButtonInternal mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.rightButtonContainer.mas_top);
make.left.right.equalTo(self.rightButtonContainer);
make.height.mas_equalTo(smallH);
}];
[self.deleteButtonInternal mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.pasteButtonInternal.mas_bottom).offset(vSpace);
make.left.right.equalTo(self.rightButtonContainer);
make.height.equalTo(self.pasteButtonInternal);
}];
[self.clearButtonInternal mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.deleteButtonInternal.mas_bottom).offset(vSpace);
make.left.right.equalTo(self.rightButtonContainer);
make.height.equalTo(self.pasteButtonInternal);
}];
[self.sendButtonInternal mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.clearButtonInternal.mas_bottom).offset(vSpace);
make.left.right.equalTo(self.rightButtonContainer);
// smallH
make.height.greaterThanOrEqualTo(@(smallH));
make.height.lessThanOrEqualTo(@(bigH));
make.bottom.lessThanOrEqualTo(self.rightButtonContainer.mas_bottom);
2025-10-28 14:30:03 +08:00
}];
// 2.
[self addSubview:self.pasteViewInternal];
[self.pasteViewInternal mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.mas_left).offset(12);
make.right.equalTo(self.rightButtonContainer.mas_left).offset(-12);
make.top.equalTo(self.barViewInternal.mas_bottom).offset(8);
make.height.mas_equalTo(48);
}];
2025-11-12 16:03:30 +08:00
// 3. Tag List View
[self addSubview:self.tagListView];
[self.tagListView mas_makeConstraints:^(MASConstraintMaker *make) {
2025-10-28 14:30:03 +08:00
make.left.equalTo(self.mas_left).offset(12);
make.right.equalTo(self.rightButtonContainer.mas_left).offset(-12);
make.top.equalTo(self.pasteViewInternal.mas_bottom).offset(10);
make.bottom.equalTo(self.mas_bottom).offset(-10);
}];
}
#pragma mark - Data
- (void)reloadDemoData {
//
self.itemsInternal = @[@"高情商", @"暖味拉扯", @"风趣幽默", @"撩女生", @"社交惬匿", @"情场高手", @"一枚暖男", @"聊天搭子", @"表达爱意", @"更多话术"];
2025-11-12 16:03:30 +08:00
[self.tagListView setItems:self.itemsInternal];
2025-10-28 14:30:03 +08:00
}
2025-11-12 19:46:07 +08:00
// UICollectionView KBFunctionTagListView
2025-10-28 14:30:03 +08:00
2025-11-11 20:24:13 +08:00
- (void)kb_showStreamTextViewIfNeededWithTitle:(NSString *)title {
//
2025-11-12 16:03:30 +08:00
if (self.streamOverlay.superview) { return; }
2025-11-11 20:24:13 +08:00
// 使
2025-11-12 16:03:30 +08:00
self.tagListView.hidden = YES;
KBStreamOverlayView *overlay = [[KBStreamOverlayView alloc] init];
overlay.delegate = (id)self;
[self addSubview:overlay];
[overlay mas_makeConstraints:^(MASConstraintMaker *make) {
2025-11-11 20:24:13 +08:00
make.left.equalTo(self.mas_left).offset(12);
2025-11-12 17:55:59 +08:00
// rightButtonContainer
make.right.equalTo(self.mas_right).offset(-12);
2025-11-11 20:24:13 +08:00
make.top.equalTo(self.pasteViewInternal.mas_bottom).offset(10);
make.bottom.equalTo(self.mas_bottom).offset(-10);
}];
2025-11-12 17:55:59 +08:00
// overlay
self.rightButtonContainer.hidden = YES;
//
overlay.textView.contentHorizontalPadding = 8.0;
2025-11-12 16:03:30 +08:00
self.streamOverlay = overlay;
2025-11-11 21:48:26 +08:00
2025-11-12 16:49:19 +08:00
// UI cell start
2025-11-11 20:24:13 +08:00
}
- (void)kb_onTapStreamDelete {
//
2025-11-12 13:43:48 +08:00
[self kb_stopNetworkStreaming];
2025-11-12 16:03:30 +08:00
[self.streamOverlay removeFromSuperview];
self.streamOverlay = nil;
self.tagListView.hidden = NO;
2025-11-12 17:55:59 +08:00
//
self.rightButtonContainer.hidden = NO;
2025-11-12 16:03:30 +08:00
}
//
- (void)streamOverlayDidTapClose:(KBStreamOverlayView *)overlay {
[self kb_onTapStreamDelete];
2025-11-11 20:24:13 +08:00
}
2025-11-11 21:48:26 +08:00
2025-11-12 13:43:48 +08:00
#pragma mark - Network Streaming (GET)
// ATS target Info.plist HTTP
static NSString * const kKBStreamDemoURL = @"http://192.168.1.144:7529/api/demo/talk";
2025-11-12 15:40:30 +08:00
- (void)kb_startNetworkStreamingWithSeed:(NSString *)seedTitle {
2025-11-12 13:43:48 +08:00
[self kb_stopNetworkStreaming];
2025-11-12 15:40:30 +08:00
if (![[KBFullAccessManager shared] hasFullAccess]) { return; }
2025-11-12 13:43:48 +08:00
NSURL *url = [NSURL URLWithString:kKBStreamDemoURL];
2025-11-12 15:40:30 +08:00
if (!url) { return; }
2025-11-12 13:43:48 +08:00
2025-11-12 14:18:56 +08:00
self.streamHasOutput = NO; //
__weak typeof(self) weakSelf = self;
KBStreamFetcher *fetcher = [KBStreamFetcher fetcherWithURL:url];
// /t->\t \tfetcher
fetcher.disableCompression = YES;
fetcher.acceptEventStream = NO; // SSE
2025-11-12 15:31:22 +08:00
// \t \t Fetcher UI
fetcher.treatSlashTAsTab = YES;
fetcher.trimLeadingTabOnce = YES;
fetcher.flushInterval = 0.05; //
2025-11-12 14:18:56 +08:00
fetcher.onChunk = ^(NSString *chunk) {
__strong typeof(weakSelf) self = weakSelf; if (!self) return;
[self kb_appendChunkToStreamView:chunk];
};
fetcher.onFinish = ^(NSError * _Nullable error) {
__strong typeof(weakSelf) self = weakSelf; if (!self) return;
2025-11-12 16:49:19 +08:00
// loading
if (!self.streamHasOutput && self.loadingTagIndex) {
[self.tagListView setLoading:NO atIndex:self.loadingTagIndex.integerValue];
self.loadingTagIndex = nil; self.loadingTagTitle = nil;
}
2025-11-12 16:03:30 +08:00
if (error) { [KBHUD showInfo:@"拉取失败"]; }
2025-11-12 16:49:19 +08:00
if (self.streamOverlay) { [self.streamOverlay finish]; }
2025-11-12 14:18:56 +08:00
};
self.streamFetcher = fetcher;
[self.streamFetcher start];
2025-11-12 13:43:48 +08:00
}
2025-11-12 14:18:56 +08:00
- (void)kb_stopNetworkStreaming {
[self.streamFetcher cancel];
self.streamFetcher = nil;
self.streamHasOutput = NO;
2025-11-12 13:43:48 +08:00
}
2025-11-12 14:18:56 +08:00
#pragma mark - Helpers
/// KBStreamTextView
2025-11-12 15:31:22 +08:00
/// - KBStreamFetcher /t->\t \t
/// - UI
2025-11-12 14:18:56 +08:00
- (void)kb_appendChunkToStreamView:(NSString *)chunk {
2025-11-12 16:49:19 +08:00
if (chunk.length == 0) return;
// overlay cell
if (!self.streamOverlay) {
[self kb_showStreamTextViewIfNeededWithTitle:self.loadingTagTitle ?: @""];
if (self.loadingTagIndex) {
[self.tagListView setLoading:NO atIndex:self.loadingTagIndex.integerValue];
self.loadingTagIndex = nil; self.loadingTagTitle = nil;
}
}
if (!self.streamOverlay) return;
2025-11-12 16:03:30 +08:00
[self.streamOverlay appendChunk:chunk];
2025-11-12 14:18:56 +08:00
self.streamHasOutput = YES;
2025-11-12 13:43:48 +08:00
}
2025-11-12 16:03:30 +08:00
#pragma mark - KBFunctionTagListViewDelegate
- (void)tagListView:(KBFunctionTagListView *)view didSelectIndex:(NSInteger)index title:(NSString *)title {
// + 访访
if ([[KBFullAccessManager shared] hasFullAccess]) {
2025-11-12 16:49:19 +08:00
// cell overlay
[self.tagListView setLoading:YES atIndex:index];
self.loadingTagIndex = @(index);
self.loadingTagTitle = title ?: @"";
[self kb_startNetworkStreamingWithSeed:self.loadingTagTitle];
2025-11-12 16:03:30 +08:00
return;
}
2025-11-12 16:49:19 +08:00
// 访
2025-11-12 16:03:30 +08:00
[KBHUD showInfo:@"处理中…"];
UIInputViewController *ivc = KBFindInputViewController(self);
if (!ivc) return;
NSString *encodedTitle = [title stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]] ?: @"";
NSURL *ul = [NSURL URLWithString:[NSString stringWithFormat:@"%@?src=functionView&index=%ld&title=%@", KB_UL_LOGIN, (long)index, encodedTitle]];
if (!ul) return;
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.05 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[ivc.extensionContext openURL:ul completionHandler:^(BOOL ok) {
if (ok) return; // Universal Link
NSURL *scheme = [NSURL URLWithString:[NSString stringWithFormat:@"%@@//login?src=functionView&index=%ld&title=%@", KB_APP_SCHEME, (long)index, encodedTitle]];
[ivc.extensionContext openURL:scheme completionHandler:^(BOOL ok2) {
if (ok2) return;
BOOL bridged = NO;
@try {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunguarded-availability"
bridged = [KBURLOpenBridge openURLViaResponder:scheme from:self];
#pragma clang diagnostic pop
} @catch (__unused NSException *e) { bridged = NO; }
if (!bridged) {
dispatch_async(dispatch_get_main_queue(), ^{ [[KBFullAccessManager shared] ensureFullAccessOrGuideInView:self]; });
}
}];
}];
});
}
2025-11-11 20:24:13 +08:00
// UL App Scheme访
// 访 KBStreamTextView
2025-10-30 20:23:34 +08:00
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
2025-11-11 20:24:13 +08:00
// + 访访
if ([[KBFullAccessManager shared] hasFullAccess]) {
NSString *title = (indexPath.item < self.itemsInternal.count) ? self.itemsInternal[indexPath.item] : @"";
[self kb_showStreamTextViewIfNeededWithTitle:title];
return;
}
2025-10-31 15:08:30 +08:00
[KBHUD showInfo:@"处理中…"];
2025-11-11 20:24:13 +08:00
2025-11-04 16:37:24 +08:00
UIInputViewController *ivc = KBFindInputViewController(self);
2025-10-30 20:23:34 +08:00
if (!ivc) return;
NSString *title = (indexPath.item < self.itemsInternal.count) ? self.itemsInternal[indexPath.item] : @"";
NSString *encodedTitle = [title stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]] ?: @"";
2025-10-30 20:46:54 +08:00
2025-10-30 20:53:44 +08:00
NSURL *ul = [NSURL URLWithString:[NSString stringWithFormat:@"%@?src=functionView&index=%ld&title=%@", KB_UL_LOGIN, (long)indexPath.item, encodedTitle]];
2025-10-30 20:46:54 +08:00
if (!ul) return;
2025-10-30 20:23:34 +08:00
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.05 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
2025-10-30 20:46:54 +08:00
[ivc.extensionContext openURL:ul completionHandler:^(BOOL ok) {
if (ok) return; // Universal Link
// 使 App Scheme
NSURL *scheme = [NSURL URLWithString:[NSString stringWithFormat:@"%@@//login?src=functionView&index=%ld&title=%@", KB_APP_SCHEME, (long)indexPath.item, encodedTitle]];
2025-10-30 20:46:54 +08:00
[ivc.extensionContext openURL:scheme completionHandler:^(BOOL ok2) {
if (ok2) return;
// openURL:
// 宿
BOOL bridged = NO;
@try {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunguarded-availability"
bridged = [KBURLOpenBridge openURLViaResponder:scheme from:self];
#pragma clang diagnostic pop
} @catch (__unused NSException *e) { bridged = NO; }
if (!bridged) {
2025-11-03 13:25:41 +08:00
// 访宿 Manager
dispatch_async(dispatch_get_main_queue(), ^{ [[KBFullAccessManager shared] ensureFullAccessOrGuideInView:self]; });
2025-10-30 20:46:54 +08:00
}
}];
2025-10-30 20:23:34 +08:00
}];
});
}
2025-10-28 14:30:03 +08:00
#pragma mark - Button Actions
2025-10-29 15:49:43 +08:00
- (void)onTapPaste {
//
// - iOS16+ App
// - iOS15
// viewDidLoad
UIPasteboard *pb = [UIPasteboard generalPasteboard];
NSString *text = pb.string; //
if (text.length > 0) {
//
self.pasteView.placeholderLabel.text = text;
//
// self.pasteView.placeholderLabel.numberOfLines = 0;
} else {
//
NSLog(@"粘贴板无可用文本或未授权粘贴");
}
}
#pragma mark -
//
// -
// - changeCount pasteboard.string
// * iOS16+
// * iOS15
// - / changeCount
- (void)startPasteboardMonitor {
// 访宿/
if (![[KBFullAccessManager shared] hasFullAccess]) return;
2025-10-29 15:49:43 +08:00
if (self.pasteboardTimer) return;
2025-11-10 15:38:30 +08:00
KBWeakSelf
2025-10-29 15:49:43 +08:00
self.pasteboardTimer = [NSTimer scheduledTimerWithTimeInterval:0.5 repeats:YES block:^(NSTimer * _Nonnull timer) {
__strong typeof(weakSelf) self = weakSelf; if (!self) return;
UIPasteboard *pb = [UIPasteboard generalPasteboard];
NSInteger cc = pb.changeCount;
if (cc <= self.lastHandledPBCount) return; //
self.lastHandledPBCount = cc; //
// iOS16+
NSString *text = pb.string;
if (text.length > 0) {
self.pasteView.placeholderLabel.text = text;
}
}];
}
- (void)stopPasteboardMonitor {
[self.pasteboardTimer invalidate];
self.pasteboardTimer = nil;
}
- (void)didMoveToWindow {
[super didMoveToWindow];
[self kb_refreshPasteboardMonitor];
2025-10-29 15:49:43 +08:00
}
- (void)setHidden:(BOOL)hidden {
BOOL wasHidden = self.isHidden;
[super setHidden:hidden];
if (wasHidden != hidden) {
[self kb_refreshPasteboardMonitor];
}
}
// 访
- (void)kb_refreshPasteboardMonitor {
BOOL visible = (self.window && !self.isHidden);
if (visible && [[KBFullAccessManager shared] hasFullAccess]) {
[self startPasteboardMonitor];
} else {
[self stopPasteboardMonitor];
2025-10-29 15:49:43 +08:00
}
}
- (void)kb_fullAccessChanged {
dispatch_async(dispatch_get_main_queue(), ^{ [self kb_refreshPasteboardMonitor]; });
}
2025-10-30 13:27:09 +08:00
- (void)onTapDelete {
NSLog(@"点击:删除");
2025-11-04 16:37:24 +08:00
UIInputViewController *ivc = KBFindInputViewController(self);
2025-10-30 13:27:09 +08:00
id<UITextDocumentProxy> proxy = ivc.textDocumentProxy;
[proxy deleteBackward];
}
- (void)onTapClear {
NSLog(@"点击:清空");
2025-10-30 18:28:36 +08:00
// pasteView
2025-11-04 16:37:24 +08:00
UIInputViewController *ivc = KBFindInputViewController(self);
2025-10-30 13:27:09 +08:00
id<UITextDocumentProxy> proxy = ivc.textDocumentProxy;
2025-10-30 18:28:36 +08:00
// documentContextBeforeInput 50
NSInteger guard = 0; //
while (guard < 10000) {
2025-10-30 13:27:09 +08:00
NSString *before = proxy.documentContextBeforeInput ?: @"";
2025-10-30 18:28:36 +08:00
NSInteger count = before.length;
if (count <= 0) { break; } //
2025-10-30 13:27:09 +08:00
for (NSInteger i = 0; i < count; i++) {
[proxy deleteBackward];
}
guard += count;
}
}
- (void)onTapSend {
NSLog(@"点击:发送");
// App
2025-11-04 16:37:24 +08:00
UIInputViewController *ivc = KBFindInputViewController(self);
2025-10-30 13:27:09 +08:00
id<UITextDocumentProxy> proxy = ivc.textDocumentProxy;
[proxy insertText:@"\n"];
}
2025-10-28 14:30:03 +08:00
#pragma mark - Lazy
- (KBFunctionBarView *)barViewInternal {
if (!_barViewInternal) {
_barViewInternal = [[KBFunctionBarView alloc] init];
2025-10-28 15:18:12 +08:00
_barViewInternal.delegate = self; // BarView
2025-10-28 14:30:03 +08:00
}
return _barViewInternal;
}
2025-10-28 15:18:12 +08:00
#pragma mark - KBFunctionBarViewDelegate
- (void)functionBarView:(KBFunctionBarView *)bar didTapLeftAtIndex:(NSInteger)index {
//
if ([self.delegate respondsToSelector:@selector(functionView:didTapToolActionAtIndex:)]) {
[self.delegate functionView:self didTapToolActionAtIndex:index];
}
}
- (void)functionBarView:(KBFunctionBarView *)bar didTapRightAtIndex:(NSInteger)index {
// /
}
2025-10-28 14:30:03 +08:00
- (KBFunctionPasteView *)pasteViewInternal {
if (!_pasteViewInternal) {
_pasteViewInternal = [[KBFunctionPasteView alloc] init];
}
return _pasteViewInternal;
}
2025-11-12 16:03:30 +08:00
- (KBFunctionTagListView *)tagListView {
if (!_tagListView) {
_tagListView = [[KBFunctionTagListView alloc] init];
_tagListView.delegate = (id)self;
2025-10-28 14:30:03 +08:00
}
2025-11-12 16:03:30 +08:00
return _tagListView;
2025-10-28 14:30:03 +08:00
}
- (UIView *)rightButtonContainer {
if (!_rightButtonContainer) {
_rightButtonContainer = [[UIView alloc] init];
_rightButtonContainer.backgroundColor = [UIColor clearColor];
}
return _rightButtonContainer;
}
- (UIButton *)buildRightButtonWithTitle:(NSString *)title color:(UIColor *)color {
UIButton *btn = [UIButton buttonWithType:UIButtonTypeSystem];
btn.backgroundColor = color;
btn.layer.cornerRadius = 12.0;
btn.layer.masksToBounds = YES;
btn.titleLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
[btn setTitle:title forState:UIControlStateNormal];
[btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
return btn;
}
- (UIButton *)pasteButtonInternal {
if (!_pasteButtonInternal) {
_pasteButtonInternal = [self buildRightButtonWithTitle:@"粘贴" color:[UIColor colorWithRed:0.13 green:0.73 blue:0.60 alpha:1.0]];
[_pasteButtonInternal addTarget:self action:@selector(onTapPaste) forControlEvents:UIControlEventTouchUpInside];
}
return _pasteButtonInternal;
}
- (UIButton *)deleteButtonInternal {
if (!_deleteButtonInternal) {
//
_deleteButtonInternal = [UIButton buttonWithType:UIButtonTypeSystem];
_deleteButtonInternal.backgroundColor = [UIColor colorWithWhite:0.92 alpha:1.0];
_deleteButtonInternal.layer.cornerRadius = 12.0;
_deleteButtonInternal.layer.masksToBounds = YES;
_deleteButtonInternal.titleLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
[_deleteButtonInternal setTitle:@"删除" forState:UIControlStateNormal];
[_deleteButtonInternal setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[_deleteButtonInternal addTarget:self action:@selector(onTapDelete) forControlEvents:UIControlEventTouchUpInside];
}
return _deleteButtonInternal;
}
- (UIButton *)clearButtonInternal {
if (!_clearButtonInternal) {
_clearButtonInternal = [UIButton buttonWithType:UIButtonTypeSystem];
_clearButtonInternal.backgroundColor = [UIColor colorWithWhite:0.92 alpha:1.0];
_clearButtonInternal.layer.cornerRadius = 12.0;
_clearButtonInternal.layer.masksToBounds = YES;
_clearButtonInternal.titleLabel.font = [UIFont systemFontOfSize:16 weight:UIFontWeightSemibold];
[_clearButtonInternal setTitle:@"清空" forState:UIControlStateNormal];
[_clearButtonInternal setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[_clearButtonInternal addTarget:self action:@selector(onTapClear) forControlEvents:UIControlEventTouchUpInside];
}
return _clearButtonInternal;
}
- (UIButton *)sendButtonInternal {
if (!_sendButtonInternal) {
_sendButtonInternal = [self buildRightButtonWithTitle:@"发送" color:[UIColor colorWithRed:0.13 green:0.73 blue:0.60 alpha:1.0]];
[_sendButtonInternal addTarget:self action:@selector(onTapSend) forControlEvents:UIControlEventTouchUpInside];
}
return _sendButtonInternal;
}
#pragma mark - Expose
2025-11-12 16:03:30 +08:00
- (UICollectionView *)collectionView { return self.tagListView.collectionView; }
2025-10-28 14:30:03 +08:00
- (NSArray<NSString *> *)items { return self.itemsInternal; }
- (KBFunctionBarView *)barView { return self.barViewInternal; }
- (KBFunctionPasteView *)pasteView { return self.pasteViewInternal; }
- (UIButton *)pasteButton { return self.pasteButtonInternal; }
- (UIButton *)deleteButton { return self.deleteButtonInternal; }
- (UIButton *)clearButton { return self.clearButtonInternal; }
- (UIButton *)sendButton { return self.sendButtonInternal; }
2025-10-30 13:27:09 +08:00
#pragma mark - Find Owner Controller
2025-11-04 16:37:24 +08:00
// KBResponderUtils.h
2025-10-30 13:27:09 +08:00
2025-10-28 14:30:03 +08:00
@end