2013-08-27 100 views
2

我已經在應用程序中實現了自定義鍵盤,但在我需要刪除的鍵盤頂部有一個陰影邊框。在iOS中刪除鍵盤的陰影

任何人都可以請告訴我如何刪除或隱藏它?

步驟我如下:

我已經實現這個視圖(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; 

圖像: enter image description here

+5

你在談論的是自定義的東西。如果你沒有發佈任何代碼/截圖,任何人都應該知道這個答案?有時候我會爲這樣的問題感到驚訝... –

+2

我對此非常抱歉。但由於名譽較低,我無法上傳屏幕截圖。 –

+0

所以你只是想通過發佈無法回答的問題而失去一些聲望是個好主意? –

回答

0

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