Xcode 常见错误代码及解决方案

  1. macro names must be identifiers YourProject_prefix.pch
    原因:宏名称必须是标识符。
    解决方法:Configiration 选择 All Configirations,然后重新定义 Debug,Release,Distributin 预处理器宏。

  2. no rule to process file ‘$(PROJECT_DIR)/LoadingView.h’ of type sourcecode. c.h for architecture armv6
    原因:Target 里的 Compile Sources 已含有头文件。 解决方法: 从 Target 的 Compile Sources 中删除头文件。

  3. Command/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode /Plug-ins/iPhoneOS Build System Support.xcplugin/Contents/Resources/copypng failed with exit code 1
    原因:png 图像文件拷贝失败,一般都是从文件系统里删除文件而没有通过 Xcode 删除 造成的,Xcode 的项目配置文件依然纪录着这个文件的引用。
    解决方法:给文件系统里增加相应的文件,或者从 Xcode 的 Groups & Files 删除,也可 以从 Target 的 Copy Bundle Resources 中删除。

  4. Code Sign error: The identity ‘iPhone Developer: Your Name’ doesn’t match any valid certificate/private key pair in the default keychain
    原因:签名错误。
    解决方法:在【Target 】 【Get Info 】 【 Build 】 【Code Signing】下修改签名, 同时需要将 Configuration

你可能感兴趣的:(xcode,解决方案)