将 NSString 转换为 NSInteger?

发布于 2024-10-14 06:59:53 字数 76 浏览 2 评论 0原文

我想将 string data 转换为 NSInteger

I want to convert string data to NSInteger.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

祁梦 2024-10-21 06:59:53

如果字符串是人类可读的数字表示,您可以这样做:

NSInteger myInt = [myString intValue];

If the string is a human readable representation of a number, you can do this:

NSInteger myInt = [myString intValue];
旧话新听 2024-10-21 06:59:53

[myString intValue] 返回一个 cType“int”

[myString intValue] 返回一个 NSInteger

在大多数情况下,我确实通过查看 apples 类引用找到这些简单的函数,最快的方法是单击 [option] 按钮并双击类声明(在本例中为 NSString )。

[myString intValue] returns a cType "int"

[myString integerValue] returns a NSInteger.

In most cases I do find these simple functions by looking at apples class references, quickest way to get there is click [option] button and double-click on the class declarations (in this case NSString ).

瑾兮 2024-10-21 06:59:53

我发现这是正确的答案。

NSInteger myInt = [someString integerValue];

I've found this to be the proper answer.

NSInteger myInt = [someString integerValue];
药祭#氼 2024-10-21 06:59:53
NSNumber *tempVal2=[[[NSNumberFormatter alloc] init] numberFromString:@"your text here"];

如果是字符串则返回 NULL 或返回 NSNumber

NSInteger intValue=[tempVal2 integerValue];

返回 NSNumber 的整数

NSNumber *tempVal2=[[[NSNumberFormatter alloc] init] numberFromString:@"your text here"];

returns NULL if string or returns NSNumber

NSInteger intValue=[tempVal2 integerValue];

returns integer of NSNumber

攀登最高峰 2024-10-21 06:59:53

这比integerValue更安全:

-(NSInteger)integerFromString:(NSString *)string
{
    NSNumberFormatter *formatter=[[NSNumberFormatter alloc]init];
    [formatter setNumberStyle:NSNumberFormatterDecimalStyle];
    NSNumber *numberObj = [formatter numberFromString:string];
    return [numberObj integerValue];
}

this is safer than integerValue:

-(NSInteger)integerFromString:(NSString *)string
{
    NSNumberFormatter *formatter=[[NSNumberFormatter alloc]init];
    [formatter setNumberStyle:NSNumberFormatterDecimalStyle];
    NSNumber *numberObj = [formatter numberFromString:string];
    return [numberObj integerValue];
}
不甘平庸 2024-10-21 06:59:53
int myInt = [myString intValue];
NSLog(@"Display Int Value:%i",myInt);
int myInt = [myString intValue];
NSLog(@"Display Int Value:%i",myInt);
烟燃烟灭 2024-10-21 06:59:53
NSString *string = [NSString stringWithFormat:@"%d", theinteger];
NSString *string = [NSString stringWithFormat:@"%d", theinteger];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文