Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当日期选择器中的按钮选择日期时,我试图在 txt 视图中显示文本....因此,当日期选择器位于 2010 年 1 月 30 日(或您想要的每个日期)时,您按下选择按钮并且那天的句子(或您选择的任何一天)会在 txt 视图中弹出.....每一天的每个句子都是不同的在 Xcode for iPad 中执行代码 非常感谢任何帮助
从日期选择器获取字符串中按钮事件的日期 -
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"dd-MM-yyyy hh:mm a"]; NSString *dateStr = [[dateFormatter stringFromDate:[datePickerView date]] retain];
然后将此字符串设置为标签 -
[label setText:dateStr];