This might be a bug in iOS7..? When I add the accessoryview I use the following code in viewDidLoad:
UIView *inputAccView = [[UIInputView alloc] initWithFrame:CGRectMake(0, 0.0, 320, 50) inputViewStyle:UIInputViewStyleKeyboard];
That works as expected, background same as regular keyboard in iOS7. But when I use:
[textfield setInputView:[[UIInputView alloc] initWithFrame:CGRectMake(0, 0,320, 215) inputViewStyle:UIInputViewStyleKeyboard]];
It does now work, sometimes gives a transparent blurry background as seen in attached image, other times just returning a grey background. I have only run in simulator
I'm I doing something wrong or is this a bug?