iOS 키 보드 는 숨겨 진 키보드 기능 을 어떻게 추가 합 니까?

4301 단어 iOS건반
본 고의 실례 는 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>

좋은 웹페이지 즐겨찾기