I wanna to remove white inputAccessoryView of UIWebView when load contenteditable text in iO7.
I can remove it by UIWebBrowserView by the code:
-(id)inputAccessoryView{
return nil;
}
But this way use private-API and not pass validation
I also try something like this question but not work.
Is there any better way? Thanks!