使用按钮选择时如何使用 datePicker 在文本视图中显示文本

发布于 2024-11-05 07:59:12 字数 170 浏览 0 评论 0原文

当日期选择器中的按钮选择日期时,我试图在 txt 视图中显示文本......因此,当日期选择器位于 2010 年 1 月 30 日(或您想要的每个日期)时,您按下选择按钮当天的句子(或您选择的任何一天)会在 txt 视图中弹出......每天的每个句子都不同 在 iPad 版 Xcode 中编写代码
非常感谢任何帮助

Iam trying to have text displayed in a txt view when the date is picked by a button in a date picker....so when the date picker is on jan 30,2010 (or what every date you want) you press the select button and the sentence for that day (or what ever day you pick) pops up in the txt view..... each sentence is different for each day
Doing the code in Xcode for iPad
Any help is greatly appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

远山浅 2024-11-12 07:59:12

从字符串中按钮事件的日期选择器获取日期为 -

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd-MM-yyyy hh:mm a"];
NSString *dateStr = [[dateFormatter stringFromDate:[datePickerView date]] retain];

然后将此字符串设置为标签 -

[label setText:dateStr];

get the date from date picker on a button event in a string as -

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd-MM-yyyy hh:mm a"];
NSString *dateStr = [[dateFormatter stringFromDate:[datePickerView date]] retain];

then set this string to a label as -

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