iOS 키 보드 는 숨겨 진 키보드 기능 을 어떻게 추가 합 니까?
키보드 에 숨겨 진 키보드 기능 추가
사용 방법:XMLCustomKeyBoard.h 가 져 오기
[XMComcustomKeyboard CancelableKeyboard:컨트롤 대상];
컨트롤 대상 은 UITextFiled,UITextView,UISearchBar 등 키보드 입력 을 호출 하 는 일련의 인 스 턴 스 일 수 있 습 니 다.
1.UIBarButton Item 을 사용자 정의 하고 속성 editable View 를 추가 합 니 다.editable View 는 키보드 기능 을 숨 기 는 컨트롤 을 추가 해 야 합 니 다.
#import <UIKit/UIKit.h>
@interface XMCustomKeyBoardBtn : UIBarButtonItem
@property (strong, nonatomic) id editableView;
@end
#import "XMCustomKeyBoardBtn.h"
@implementation XMCustomKeyBoardBtn
@end
2.UIView 를 사용자 정의 합 니 다.UIView 의 하위 클래스 만 keyWindow 에 추가 할 수 있 기 때문에 이러한 정 의 를 동적 으로 연결 하려 면 이 종 류 를 활성화 시 켜 야 합 니 다.
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "XMCustomKeyBoardBtn.h"
@interface XMCustomKeyBoard : UIView
+ (void) CancelableKeyboard:(id) editableView;
+ (void) CancelableKeyboard:(id) editableView CustomButtonItem:(UIBarButtonItem *)btn;
@end
3.들 어 오 는 컨트롤 을 통 해 키보드 도구 모음 에 키 보드 를 숨 기 는 단 추 를 추가 하고 숨겨 진 키 보드 를 동적 으로 연결 하 는 방법
#import "XMCustomKeyBoard.h"
@implementation XMCustomKeyBoard
+ (void) CancelableKeyboard:(id) editableView{
XMCustomKeyBoard *custom = [[XMCustomKeyBoard alloc] initWithFrame:CGRectMake(0,-999,10,10)];
[[UIApplication sharedApplication].keyWindow addSubview:custom];
[editableView setInputAccessoryView:[self CancelableKeyboardToolBar:editableView addTarget:custom]];
}
+ (void) CancelableKeyboard:(id) editableView CustomButtonItem:(UIBarButtonItem *)btn {
XMCustomKeyBoard *custom = [[XMCustomKeyBoard alloc] initWithFrame:CGRectMake(0,-10,10,10)];
[[UIApplication sharedApplication].keyWindow addSubview:custom];
[editableView setInputAccessoryView:[self CancelableKeyboardToolBar:editableView CustomButtonItem:btn addTarget:custom]];
}
+ (UIToolbar *)CancelableKeyboardToolBar:(id) editableView CustomButtonItem:(UIBarButtonItem *)btn addTarget:(id) target
{
UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth([UIApplication sharedApplication].keyWindow.frame), 40)];
toolbar.backgroundColor = [UIColor lightGrayColor];
UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithTitle:@" " style:UIBarButtonItemStylePlain target:editableView action:@selector(onClick)];
[button setWidth:[UIApplication sharedApplication].keyWindow.frame.size.width - btn.width];
XMCustomKeyBoardBtn *button1 = (XMCustomKeyBoardBtn *)btn;
button1.target = target;
button1.action = @selector(CancelableKeyboard:);
button1.editableView = editableView;
[toolbar setItems:@[button,button1]];
return toolbar;
}
+ (UIToolbar *)CancelableKeyboardToolBar:(id) editableView addTarget:(id) target
{
UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth([UIApplication sharedApplication].keyWindow.frame), 40)];
toolbar.backgroundColor = [UIColor lightGrayColor];
UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithTitle:@" " style:UIBarButtonItemStylePlain target:editableView action:@selector(onClick)];
[button setWidth:[UIApplication sharedApplication].keyWindow.frame.size.width - 50];
XMCustomKeyBoardBtn *button1 = [[XMCustomKeyBoardBtn alloc] initWithTitle:@" " style:UIBarButtonItemStyleBordered target:target action:@selector(CancelableKeyboard:)];
button1.editableView = editableView;
[button1 setWidth:50];
[toolbar setItems:@[button,button1]];
return toolbar;
}
-(void)CancelableKeyboard:(XMCustomKeyBoardBtn *) btn{
[btn.editableView resignFirstResponder];
}
-(void) onClick{
}
@end
이상 은 본문의 전체 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저희 도 많이 응원 해 주시 기 바 랍 니 다.p>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
View의 레이아웃 방법을 AutoLayout에서 따뜻한 손 계산으로 하면 성능이 9.26배로 된 이야기이 기사는 의 15 일째 기사입니다. 어제는 에서 이었습니다. 손 계산을 권하는 의도는 없고, 특수한 상황하에서 계측한 내용입니다 화면 높이의 10 배 정도의 contentView가있는 UIScrollView 레이아...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.