非常に簡単な解決策は、- (UIKeyboardAppearance) keyboardAppearance
カテゴリ拡張を介して にメソッドを追加することUIView
です。このメソッドでは、単純に を返すことができますUIKeyboardAppearanceDark
。これが機能するのは、ユーザーが HTML フォームの入力フィールドをタップしたときに最初のレスポンダーとなる内部UIWebView
ビュー ( ) にメソッドが魔法のように追加されるためです。UIWebBrowserView
このアプローチの主な問題は、UIView から派生したすべてのビューに影響することであり、望ましくない場合があります。
キーボードを担当するファーストレスポンダーを傍受し、keyboardAppearance
存在しない場合はそれにメソッドを追加する、よりターゲットを絞ったソリューションを構築できます。これは、将来の内部実装がセレクターUIWebBrowserView
を含むように変更された場合、正常に機能しなくなります。keyboardAppearance
#import <objc/runtime.h>
@protocol TSPingPong <NSObject>
- (void) ts_pong: (id) sender;
@end
@interface NSObject (TSPingPong)
@end
@implementation NSObject (TSPingPong)
- (void) ts_ping: (id) sender
{
if ( [sender respondsToSelector: @selector(ts_pong:)] )
{
[sender performSelector: @selector( ts_pong: ) withObject: self ];
}
}
@end
@implementation TSViewController
{
IBOutlet UIWebView* _webView;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver: self
selector: @selector(keyboardWillAppear:)
name: UIKeyboardWillShowNotification
object: nil];
NSString* html = @"<br><br><br><form action=''> " \
"First name: <input type='text'><br> " \
"Last name: <input type='text'><br>" \
"<input type='submit' value='Submit'> " \
"</form>";
[_webView loadHTMLString: html
baseURL: nil];
}
- (void) keyboardWillAppear: (NSNotification*) n
{
// the keyboard is about to appear!
// play pingpong with the first responder so we can ensure it has a keyboardAppearance method:
[[UIApplication sharedApplication] sendAction: @selector( ts_ping:) // added via category extension
to: nil // to: the first responder
from: self // "sender"
forEvent: nil];
}
- (void) ts_pong: (id) sender
{
// sender is the first responder. Happens to be undocumented "UIWebBrowserView" in this case.
// if it doesn't have it's own keyboardAppearance method then let's add one:
if ( ![sender respondsToSelector: @selector(keyboardAppearance)] )
{
Method m = class_getInstanceMethod( [self class], @selector( keyboardAppearanceTemplateMethod ) );
IMP imp = method_getImplementation( m );
const char* typeEncoding = method_getTypeEncoding( m );
class_addMethod( [sender class], @selector(keyboardAppearance), imp, typeEncoding );
}
}
- (UIKeyboardAppearance) keyboardAppearanceTemplateMethod
{
return UIKeyboardAppearanceDark;
}
@end