我有一组日期,我只需要获取两个不同日期(StartDate 和 EndDate)之间的日期..
谁能帮我解决这个问题...
提前致谢
Best Answer-推荐答案 strong>
假设您有类型为 NSDate 的 startDate 和 endDate 实例,您可以:
NSPredicate *predicate = [NSPredicate predicateWithFormat"(SELF > %@) AND (SELF < %@)", startDate, endDate];
NSArray *result = [arrayWithDates filteredArrayUsingPredicate:predicate];
关于iphone - 获取介于 StartDate 和 EndDate 之间的日期,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/10216991/
|