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

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

于 2014-04-28T05:06:07.307 に答える
0

GitHub で入手できるサンプル コードを検索します。これはiOSカスタムキーボードに役立つかもしれません

于 2014-04-28T05:38:41.400 に答える