如何创建一个 UITextField 以按照以下方式容纳值?
How to Create a UITextField to accommodate value in this following manner?
我正在开发一个 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;
但更大的问题是,我需要它看起来像我发布的图片
我怎样才能做到这一点?
好的...应该有几种方法可以解决这个问题。
1)
将透明(或清晰的彩色)UIButton 放在带有日期标签的视图上。您可能需要使包含标签的视图发生变化 color/alpha 以指示在显示日期选择器之前已触摸按钮。
2)
如果上述方法不起作用,try adding the view with the labels as a subview into UIButton。
我正在开发一个 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;
但更大的问题是,我需要它看起来像我发布的图片
我怎样才能做到这一点?
好的...应该有几种方法可以解决这个问题。
1)
将透明(或清晰的彩色)UIButton 放在带有日期标签的视图上。您可能需要使包含标签的视图发生变化 color/alpha 以指示在显示日期选择器之前已触摸按钮。
2)
如果上述方法不起作用,try adding the view with the labels as a subview into UIButton。