gpt4 book ai didi

ios - 将 NSDate 与 [NSMutableArray objectatIndex :i]

转载 作者:行者123 更新时间:2023-11-29 04:54:54 28 4
gpt4 key购买 nike

我有一个名为..的函数

-(BOOL)isDateOkForHistory:(NSDate *)dtHist
{
bool dateOkForHistory = false;

for(NSInteger i=0;i<m_histCount;i++)
{
if(dtHist > [m_dtHistory objectAtIndex:i])
{
//execute some condition.....
}
}
}

这里 m_dtHistory 是一个 NSMutableArray.......所以我怀疑我正在检查的 if 语句是否正确..?

问候兰 git

最佳答案

NSDate 对象应该使用 compare: 方法进行比较。
示例:

if ([dtHist compare:[m_dtHistory objectAtIndex:i]] == NSOrderedDescending) {

}

文档:http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSDate_Class/Reference/Reference.html

关于ios - 将 NSDate 与 [NSMutableArray objectatIndex :i],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8193442/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com