ios中最近遇到的一些问题

1.copyPNGFile error错误?

解决办法:delete掉引用(不是最好的办法)。

另外一种方法:可能png的格式不对,使用mac自带的图片预览工具,另存为png(推荐!!!)。


2.取消app启动画面?

解决办法:Launch image设置为NO(不建议取消启动画面)。


3.apple Mach-0 Linker error?

解决办法:archive时提示的错误, Target‘s Build Setting ->other Linker Flags

将$(TARGET_BUILT_DIR)/libCordova.a修改为$(BUILT_PRODUCTS_DIR)/libCordova.a。


4.提交app时,xcode报9000错误,must supports 4-inch display?

必须支持iphone5的4-inch屏幕,

解决办法:点击.project,设置Launch images, 设置Retina 4-inch 为[email protected](不是最好的办法)。

另一种办法:给项目中添加[email protected]图片,注意大小和尺寸。


你可能感兴趣的:(ios中最近遇到的一些问题)