我正在开发一个ios应用程序,它有两个用于输入日期的输入字段。我打算以下列方式添加UIDatePicker
[_datePicker setFrame:CGRectMake([UIScreen mainScreen].bounds.size.width-_datePicker.bounds.size.width, [UIScreen mainScreen].bounds.size.height-_datePicker.bounds.size.height, _datePicker.frame.size.width, _datePicker.frame.size.height)];
_inputText.inputView=_datePicker;
我该如何做到这一点?
答案 0 :(得分:1)
好的......应该有几种方法可以解决这个问题。
1)
将带有日期标签的透明(或透明色)UIButton 放在视图上。在打开日期选择器之前,您可能需要使包含标签的视图更改颜色/ alpha值以指示按钮已被触摸。
2)
如果上述方法无效,try adding the view with the labels as a subview into UIButton。