我已经在应用程序中实现了自定义键盘,但是键盘顶部有一个阴影边框,我需要删除它。
谁能告诉我如何删除或隐藏它?
我遵循的步骤:
我已经为键盘实现了这个视图(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;
图片 :