美文网首页
Xcode warning:解决

Xcode warning:解决

作者: GitArtOS | 来源:发表于2020-06-13 18:01 被阅读0次

1. warning: (armv64) /Users/lijiajia/...xxxxx unable to open object file: No such file or directory

解决办法

Build Settings搜索build option找到下面,改成蓝色部分就消除了

截屏2020-06-13 下午5.55.43.png

2. warning: instance method 'xxx' in category from xxx conflicts with same method from another category

截屏2020-06-13 下午5.59.32.png

原因: 两个category实现了此方法;
解决办法:.没办法,一个个改,太浪费时间,改名字

3. The image set name "xxx" is used by multiple image sets.

使用了同名的图片资源。

4. Format specifies type ''xxx (aka 'xxx') but the argument has type '' xxx(aka xxx'')

打印的时候数据类型不一致,一般是打印NSInteger的时候使用了%d

相关文章

网友评论

      本文标题:Xcode warning:解决

      本文链接:https://www.haomeiwen.com/subject/kldztktx.html