I am working in iPhone messaging based app.
I want to show keyboard with keyboard inputAccessoryView
in keyboard without using UITextView
and
You can try the answers on these other SO posts:
Use the system keyboard without a UITextView or UITextField
iphone keyboard without textview
You can also try this:
UIKeyboard *keyboard = [[[UIKeyboard alloc] initWithFrame: CGRectMake(0.0f, contentRect.size.height - 216.0f, contentRect.size.width, 216.0f)] autorelease];
[keyboard setReturnKeyEnabled:NO];
[keyboard setTapDelegate:editingTextView];
[inputView addSubview:keyboard];