在IOS中的sqlcipher集成中删除警告
我在我的IOS项目中实现了sqlCipher,当我运行它时,显示25条警告,比如'隐式转换失去了整数精度'size_t'(又名'long')到'int''所以请建议如何摆脱这些警告。 任何帮助将不胜感激。
将datatypes
从int
更改为long
并且警告将不再显示。
例如下面的陈述给出了上述的警告,
int i = [self someMethod]; //this method's return type is NSInteger
所以它会给出这个警告,所以改变它就好,
long i = [self someMethod];
链接地址: http://www.djcxy.com/p/26993.html
上一篇: Remove warning in sqlcipher Integation in IOS
下一篇: It is a bad practice to use Sun's proprietary Java classes?