我正在使用 Xcode5 在 ios7 上编码,编译器给我这个错误。
隐式转换失去整数精度,
sqlite3_int64
也long long
就是int
.
下面的代码如下:
if([self chatId] != nil) {
[chatId release];
}
chatId = [[NSNumber alloc] initWithInt:sqlite3_last_insert_rowid(database)];
sqlite3_finalize(sqlStatement);
有什么帮助吗?