2

我已经在应用程序中实现了自定义键盘,但是键盘顶部有一个阴影边框,我需要删除它。

谁能告诉我如何删除或隐藏它?

我遵循的步骤:

我已经为键盘实现了这个视图(UIView 的子类)

我已经创建了这个子类的对象并设置为 UITextfield 的 inputView

代码 :

CustomNumericKeyboard *num_keyboard = [[CustomNumericKeyboard alloc] initWithFrame:CGRectMake(0, 0, Screen_Width, 220)];
num_keyboard.backgroundColor = [UIColor whiteColor];

self.txtSearch.inputView = num_keyboard;

图片 : 在此处输入图像描述

4

2 回答 2

0

Search some sample code available on GitHub. This one might help iOS custom keyboard

于 2014-04-28T05:38:41.400 回答
0

self.txtSearch.inputAccessoryView = [[[UIView alloc] init] autorelease];

于 2014-04-28T05:06:07.307 回答