Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个变量,需要多种方法访问和更改。
我已将其声明为:
@property (nonatomic, retain) NSString *curDate;
然后我也在代码中综合它。
但是,当尝试像这样更改它的值时:
curDate = "02-07-2012";
应用程序崩溃。
为什么是这样?我应该如何改变这个值?
使用文字语法时需要使用@符号。NSString
@
NSString
像这样:
curDate = @"02-07-2012";
在此处@阅读有关Objective-C 中符号用法的所有信息。
你犯了字面错误