IOS - 自定义输入视图到文本视图

时间:2014-04-10 10:00:19

标签: ios textview

我创建了一个大小为1024乘300的自定义视图。我为其背景提供了清晰的颜色,并将其设置为textView的inputView。

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吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

使用[self.txtView_scheduleDate.inputView setBackgroundColor:[UIColor clearColor]];