我创建了一个大小为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;
工作正常但背景颜色仍然是灰色。
这是一个截屏。
我可以将输入视图的背景颜色设为clearColor吗?
谢谢。
答案 0 :(得分:0)
使用[self.txtView_scheduleDate.inputView setBackgroundColor:[UIColor clearColor]];