在不同的视图和日期选择器中更新

发布于 2024-11-25 11:43:27 字数 144 浏览 1 评论 0原文

我想从视图更新日期/时间,并将该日期/时间更新到不同视图中的另一个文本字段,如何将其链接在一起?

对于日期选择器,我如何使小时和分钟始终可滚动,例如。就我而言,如果现在时间是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小巷里的女流氓 2024-12-02 11:43:27

对于带有选择器值的文本字段的更新,您需要从选择器中获取值并将该值传递到文本字段所在的视图。这可以在您推送或呈现到视图控制器时完成,也可以通过 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.

心奴独伤 2024-12-02 11:43:27

对于问题的第一部分,您想要将内容从一个视图更新到另一个视图,您可以将其设置为类中的属性。您可以在另一个视图中引用该类并获取该变量中的数据。或者您可以使用 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 can reference that class in another view and get the data in that variable. Or you can use NSUserDefaults 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 of alpha and then reduce the alpha for fields below specific time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文