我有一个 NSDate 属性,如下所示,我希望将其设置为今天的日期。
@property (nonatomic, copy, readwrite) NSDate *todayDate;
我尝试了以下方法,但出现错误:
NSDate *date = [[NSDate alloc] init];
self.todayDate = [date isToday];
我猜,isToday 只是检查日期是否是今天的日期,并没有设置日期。
我收到以下 2 个错误:
Implicit conversion of 'BOOL' (aka 'signed char') to 'NSDate *' is disallowed with ARC
Incompatible integer to pointer conversion assigning to 'NSDate *' from 'BOOL' (aka 'signed char');
如何在 Objective C 中将 NSDate 设置为今天的日期?