2014-04-10 70 views
1

我已經創建了一個尺寸爲1024×300的自定義視圖。我給背景添加了清晰的顏色,並將其設置爲inputView到textView。IOS - 自定義輸入視圖到文本視圖

view_datePicker = [[DatePickerView alloc]initWithFrame:CGRectMake(0, 0, 1024, 356)]; 
    view_datePicker.delegate = self; 
    view_datePicker.backgroundColor = [UIColor clearColor]; 
    self.txtView_scheduleDate.inputView = view_datePicker; 

它工作正常,但其背景色仍然是灰色。

這是一個截圖。 enter image description here

我可以使輸入視圖的背景色爲clearColor嗎?

謝謝。

回答

0

use [self.txtView_scheduleDate.inputView setBackgroundColor:[UIColor clearColor]];

+0

嗨,它不工作。 – Durgaprasad

+0

DatePickerView是自定義類嗎? – iDeveloper

+0

是的。 uiview的子類。 – Durgaprasad