int、NSInteger 和 NSUInteger 之间的区别
Objective-C 中 int、NSInteger 和 NSUInteger 之间的主要区别是什么? 哪一个更适合在应用程序中使用?为什么?…
为什么我的代码与我一起初始化 NSInteger?
可能的重复: (Objective-)C int 始终初始化为 0? 我有一个接口 @interface MyInterface { NSInteger _count; } @end 然后在我的实现中我只是使用…
isEqualToString: 方法和 NSInteger 的问题
这是我的代码: for (int i=0; i
NSInteger 和 int 给出例外
我正在尝试使用 FMDB 从数据库中获取数据,但尝试了一段时间却徒劳无功,我不明白为什么会抛出 EXC_BAD_ACCESS 异常。该参数是从 NSInteger 传入的,…
通过参数NSInteger返回值
我需要从数据库读取 3 个值并在方法中返回它们。我无法理解如何使用 NSInteger 类型返回值。这是代码: NSString* GetVerbInfinitive(FMDatabase* myd…
Objective C 中 int 的问题
singelton.categoryId = (int)[categories.categoriesId objectAtIndex:indexPath.row]; NSLog(@"%d", singelton.categoryId); singelton.categoryId …
将 NSInteger 转换为 NSIndexpath
基本上我将数组的索引存储在 NSInteger 中。我现在需要它作为 NSIndexpath,我正在努力寻找并找到一种将 NSInteger 转换为 NSIndexpath 的方法,以便…
int 和 NSInteger 有什么区别?
可能的重复: 何时使用 NSInteger 与 int? 为什么会有 NSInteger? 我们可以使用 int 和 NSInteger 可以互换吗?是否有任何特定情况只使用 NSIntege…
如何从 NSIndexPath 获取特定值
我有一个 NSArray,里面有 NSIndexPaths NSArray *array = [self.tableView indexPathsForSelectedRows]; for (int i = 0; i < [array count]; i++) {…
将 serverOutputValue 拉取为 NSInteger
大家好,我试图通过我的 iPhone 应用程序调用 php 脚本,它返回一个整数值作为 serverOutput NSData *dataURL = [NSData dataWithContentsOfURL: [ NS…
iOS/Objective-C:NSInteger 在简单的 Coordinates2D 对象创建过程中丢失
我为此抓狂......我不知道出了什么问题。 我创建了一个非常简单的 Coordinates2D 类来存储两个 NSInteger 值,以及与 NSLog 一起使用的字符串表示形式…
int32_t 到 NSInteger 的转换是否有任何问题?
我正在使用数据类型 int32_t 为 iOS 创建位掩码。然后将其设置为接受 NSInteger 的变量。这不会像预期的那样抛出编译时错误,但我想知道 - 是否有某种…
NSInteger 计数乘以 4?
我不明白为什么这个 NSInteger 计数器会增加到数据库行真实值的 4 倍。也许这很愚蠢,但我真的不明白...... 到目前为止谢谢:) NSInteger *i; i = 0; f…