web-dev-qa-db-ja.com

iOS7キーボードのReturn / Done / Searchティントカラー

新しいiOS7 UIViewティントカラーを使用すると、アプリ全体のテーマをすばやく簡単に設定できます。 UITextFieldを編集するときに、テキストキャレットの色も変更します。

ただし、キーボードの右下の「閉じる」ボタン(「完了」、「検索」など)は常に青色です。これを変更する方法はありますか?それがアプリの他の部分の色合いの色と一致していれば、それは本当に素敵に見えます。

iOS7 UISearchBar keyboard

24
Tyson

少しハックするだけで、探している効果が得られるかもしれません。ただし、アプリのレビューに合格しない可能性があります。

-(NSArray*)subviewsOfView:(UIView*)view withType:(NSString*)type{
    NSString *prefix = [NSString stringWithFormat:@"<%@",type];
    NSMutableArray *subviewArray = [NSMutableArray array];
    for (UIView *subview in view.subviews) {
        NSArray *tempArray = [self subviewsOfView:subview withType:type];
        for (UIView *view in tempArray) {
            [subviewArray addObject:view];
        }
    }
    if ([[view description]hasPrefix:prefix]) {
        [subviewArray addObject:view];
    }
    return [NSArray arrayWithArray:subviewArray];
}

-(void)addColorToUIKeyboardButton{
    for (UIWindow *keyboardWindow in [[UIApplication sharedApplication] windows]) {
        for (UIView *keyboard in [keyboardWindow subviews]) {
            for (UIView *view in [self subviewsOfView:keyboard withType:@"UIKBKeyplaneView"]) {
                UIView *newView = [[UIView alloc] initWithFrame:[(UIView *)[[self subviewsOfView:keyboard withType:@"UIKBKeyView"] lastObject] frame]];
                newView.frame = CGRectMake(newView.frame.Origin.x + 2, newView.frame.Origin.y + 1, newView.frame.size.width - 4, newView.frame.size.height -3);
                [newView setBackgroundColor:[UIColor greenColor]];
                newView.layer.cornerRadius = 4;
                [view insertSubview:newView belowSubview:((UIView *)[[self subviewsOfView:keyboard withType:@"UIKBKeyView"] lastObject])];

            }
        }
    }
}

私がビュー階層をデコードするために使用したアプリは次のとおりでした: http://revealapp.com/

最終結果は次のようになります。 Green Key

32

ボタンのティントカラーは変更できませんが、keyboardを使用してUIKeyboardAppearanceティントカラーを設定できます

image

yourTextField.keyboardAppearance = UIKeyboardAppearanceDark;

Appleから提供された非常に素晴らしいドキュメントを以下に示します。

キーボードの管理

4
Nitin Gohel
let colors: [UIColor] = [.red, .blue, .green, .purple, .yellow, .orange, .brown]

if let window = UIApplication.shared.windows.first(where: { 
    $0.isType(string: "UIRemoteKeyboardWindow") 
}) {
    if let keyplaneView = window.subview(ofType: "UIKBKeyplaneView") {
        for (i, keyView) in keyplaneView.subviews.filter({
            $0.isType(string: "UIKBKeyView") 
        }).enumerated() {
            let view = UIView(frame: keyView.bounds)
            view.backgroundColor = colors[i].withAlphaComponent(0.5)
            keyView.addSubview(view)
        }
    }
}

UIKBKeyplaneViewのキーのカラーマップは次のとおりです:

0
Callam