作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个应用程序,该应用程序涉及从日期选择器获取值并将其从实际 iPhone 上显示的日期中减去。我该怎么做?我到处寻找答案!
谢谢拉菲
最佳答案
您应该将 datePickerValueChanged
实现为选择器,并像这样实现。
- (void)datePickerValueChanged:(UIDatePicker*) date_Picker{
NSDateFormatter *df = [[NSDateFormatter alloc] init];
df.dateStyle = NSDateFormatterMediumStyle;
NSString *dateFromPicker = [NSString stringWithFormat:@"%@",[df stringFromDate:date_Picker.date]];
// calculating time difference now
NSDate *timeRightNow = [NSDate date];
NSTimeInterval diff = [timeRightNow timeIntervalSinceDate:date_Picker.date];
// The difference should always be in seconds. Here, 3628800 represents 6 weeks.
if (diff > 3628800){
// Do something if the entered date is six weeks from the iPhone date.
}
}
关于iphone - 如何从 UIDatepicker 获取数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6944083/
我是一名优秀的程序员,十分优秀!