I'm making custom keyboard for my app and it's working fine with UITextField. But UISearchBar don't support inputView
- (UIView *)inputView {
if(self.keyboard==nil)
{
self.keyboard=[[[MMKeyboard alloc] initWithNibName:@"MMKeyboard" bundle:nil]autorelease];
}
NSLog(@"HERE");
return self.keyboard.view;
}
How to replace with my custom UITextField in UISearchBar or how to implement inputView in UISearchBar ?