3
我得到這個錯誤,我無法運行的程序,由於該段代碼...二手va_list的類型在那裏被BWDB.m所需的算術或指針類型(aka_builtin_va_list)文件
// build the query
NSString * query = [NSString stringWithFormat:@"update %@ set %@ = ? where id = ?",
tableName,
[[record allKeys] componentsJoinedByString:@" = ?, "]];
[self bindSQL:[query UTF8String] withVargs:(va_list)dValues.mutableBytes];
sqlite3_step(statement);
sqlite3_finalize(statement);
}
我使用Bill Weinman的sqlite3代碼 - BWDB.m - 完整的代碼可以在這裏找到(http://bw.org/iosdata/)。我在更新到Xcode 5.1後注意到這個錯誤。 我搜索周圍,但找不到任何有用的東西。我將不勝感激任何建議。
閱讀: 爲 [BWDB SQLite的包裝ios arc](http://stackoverflow.com/questions/11399152/bwdb-sqlite-wrapper-for-ios-arc-issues) – oscarr