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.
我需要将 NSInteger 设置为文本字段中的数字。我用谷歌搜索了它,找不到任何答案。有人知道怎么做这个吗
NSInteger x = [textField.text integerValue];
John C. Daub 的答案是完美的。我还要补充一点:
NSInteger x = [[NSNumber numberWithInteger:[field.text integerValue]] integerValue];
的优点NSNumber是,如果您想将此整数传递给字典,NSNumber 会有所帮助。
NSNumber
另一方面,调用integerValue就足够了。
integerValue