1

我是 Objective-C 的新手,我正在尝试插入 NSdate,但我不知道要包含哪个库才能调用它。我尝试了以下但没有成功。谢谢你的帮助

#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>
#include <CoreFoundation/CoreFoundation.h>

// Get current datetime
NSDate *currentDateTime = [NSDate date];
// Instantiate a NSDateFormatter
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
// Set the dateFormatter format
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
// Get the date time in NSString
NSString *dateInString = [dateFormatter stringFromDate:currentDateTime];
// Release the dateFormatter
[dateFormatter release];
4

1 回答 1

5

您已经包含了所有必要的标头并添加了所有必要的框架(NS* 类只需要 Foundation)。问题是您的陈述没有范围。例如,将它们包装在main()函数中。

于 2012-12-24T22:21:39.553 回答