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.
我有一个 NSString 实例,我想从中检索值并将其存储到一个整数中。这是我正在做的,但它不起作用。
NSString *totalcnt; char *str = totalcnt; int a = atoi(str);
帮帮我。谢谢
泰穆尔
如果您正在处理 Objective-C 对象,请使用 Objective-C:
int a = [totalcnt intValue];
参考:intValue
intValue
在您的代码示例中,您没有实例化 NSString,但我希望您在真实代码中执行此操作。否则,totalcnt是一个野指针。
totalcnt