2013-04-15 2 views

답변

0

짧은 답변은 입니다. Apple/iPhone은 이러한 유형의 기능을 제공하지 않기 때문에 키 보드의 색상을 변경할 수 없습니다.

하지만 키보드의 모양을 변경할 수는 UIKeyboardAppearanceAlert에 텍스트 필드의 keyboardAppearance 속성을 설정 This official Document.

0

시도를 참조하십시오. 그러면 검은 색 배경이됩니다.

for(UIView *subView in searchBar.subviews) 
    if([subView isKindOfClass: [UITextField class]]) 
     [(UITextField *)subView setKeyboardAppearance: UIKeyboardAppearanceAlert];