在不同的视图和日期选择器中更新
我想从视图更新日期/时间,并将该日期/时间更新到不同视图中的另一个文本字段,如何将其链接在一起?
对于日期选择器,我如何使小时和分钟始终可滚动,例如。就我而言,如果现在时间是 10 点。只有 10、11 和 12 小时可以滚动(黑色),其余时间将显示为灰色。
I wanna update my date/time from a view and update that date/time to another textfield in a different view , how do i link this together ?
And for a date picker how do i enable the hr and mins to be scrollable at all times , for eg. in my case if the time is 10 now . onli 10, 11 and 12 will be able to be scrollable (black) the rest of the hrs will be in grey .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于带有选择器值的文本字段的更新,您需要从选择器中获取值并将该值传递到文本字段所在的视图。这可以在您推送或呈现到视图控制器时完成,也可以通过 NSUserDeaults 来完成。
现在,对于选择器部分,您可以设置最短时间和最大时间,这将帮助您完成您想做的任务(对于选择器视图)。
希望我说得清楚。如果你没有得到任何地方,请询问。
For the updatinf of textfield with picker value you need to take value from picker and pass that value to the view where the textfield is .This can be done when you are push or present to the view controller or you can do that by NSUserDeaults.
Now for the picker part you can set the minimum time and maximum time which will help you to do the task you wanted to do(for the picker view) .
Hope i am clear.Do ask if you dont get anywhere.
对于问题的第一部分,您想要将内容从一个视图更新到另一个视图,您可以将其设置为类中的属性。您可以在另一个视图中
引用
该类并获取该变量中的数据。或者您可以使用 NSUserDefaults 来回传递数据。然后只需使用[textField setText: stringfromClassOne]
。对于
PickerView
以及具有不同颜色的内容,请使用alpha
属性,然后减少低于特定时间的字段的 alpha。For the first part of the question , where you want to update stuff from one view to another, you can either set it as a
property
in your class. You canreference
that class in another view and get the data in that variable. Or you can useNSUserDefaults
for passing data back and forth. And then just use[textField setText: stringfromClassOne]
.For the
PickerView
and for having stuff in a different colour, use the property ofalpha
and then reduce the alpha for fields below specific time.