美文网首页
iOS-我遇到的问题(二)

iOS-我遇到的问题(二)

作者: BestVast | 来源:发表于2016-09-27 10:02 被阅读132次
    • 1、解决集成支付宝报一堆warning: (arm64) /Users/scmbuild/workspace/standard-pay/.....警告问题
      借鉴于~宁静致远
      iOS开发-常见的编译、崩溃错误、实用技巧

      warning.png
      修改方法:TARGET->Build Settings-> Build Options->Debug Information Format
      solution.png
    • 2、报错:libc++abi.dylib: terminating with uncaught exception of type NSException
      原因:我报这个错误的原因是 将获取到为nil的对象,设置成字典的值。修改之后即没有问题

    • 3、Xcode iPhone工程变成了My Mac 解决办法
      1). 退出Xcode。
      2).找到项目的 .xcodeproj文件,右键显示包内容,删除掉 xcuserdata这个文件.
      3).重新打开工程,就没有问题了。

    • 4、警告:Multiple declarations of method 'xviewPayShareLogin:' found and ignored
      原因:类的声明文件里面,声明了两个相同的方法名,自己坑自己。。。

    • 5、ld: library not found for -lMiPushSDK
      clang: error: linker command failed with exit code 1 (use -v to see invocation)
      问题:删除第三方库不彻底
      解决办法:TARGET -> Builds Settings -> Other Link Flags 或 Head Search Paths 中删除‘ lMiPushSDK’类似第三方库

    • 6、使用Application Loader提交

    ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'bswkApp.app/libswiftRemoteMirror.dylib' is not permitted. 
    Your app can’t contain standalone executables or libraries, other than the CFBundleExecutable of supported bundles. 
    Refer to the Bundle Programming Guide at https://developer.apple.com/go/?id=bundle-structure for information on the iOS app bundle structure."
    

    解决办法:
    iOS提交ipa包时出现"The binary file XXX libswiftRemoteMirror.dylib is not permitted"

    • 7、使用Application Loader提交 。如下图:由于提交的ipa版本号已经提交过了,不能重复提交

      image.png
    • 8、导入融云AgoraRtcEngineKit.framework、RongCallKit.framework、RongCallLib.framework库之后报错

    Undefined symbols for architecture x86_64:
      "_VTDecompressionSessionCreate", referenced from:
          AgoraRTC::H264VideoToolboxDecoder::ResetDecompressionSession() in AgoraRtcEngineKit(libAgoraRTCEngine.a-x86_64-master.o).......
    

    解决办法:


    VideoToolbox.framework.png
    • 9、使用Application Loader提交ipa上架,遇到问题如下图
      image.png image.png image.png

    解决办法:
    第一个:ipad版本遇到问题


    image.png

    第二个问题:URL schemes不能设置为0


    image.png
    第三个问题(第二张、第三张图片):换了个电脑上传ipa包没有问题了,可能电脑出问题了,没解决。跪求解决版本。
    • 10、使用Xcode9Application Loader分别上传ipa到AppStore成功,构建版本中缺失找不到。
      解决版本: 出现这种情况, iTunes Connect会发邮件到开发者账号的邮箱里面的, 看一下邮件就知道具体原因了
    我的问题如下:原因是缺少了几张尺寸的logo图片
    Dear developer,
    
    We have discovered one or more issues with your recent delivery for "App名字". To process your delivery, the following issues must be corrected:
    
    Missing required icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format for iOS versions >= 7.0.
    
    Missing required icon file - The bundle does not contain an app icon for iPad of exactly '167x167' pixels, in .png format for iOS versions supporting iPad Pro.
    
    Missing required icon file - The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format for iOS versions >= 7.0.
    
    Invalid App Store Icon - The App Store Icon in the asset catalog in 'ipa包名字.app' can't be transparent nor contain an alpha channel.
    
    Once these issues have been corrected, you can then redeliver the corrected binary.
    
    Regards,
    
    The App Store team
    

    朋友碰到的问题是:info.plist里面缺少麦克风权限

    • 11、svn冲突

      image.png
      解决办法:
      借鉴于crazy_stone的博客
      1.对.xcodeproj 文件右键,显示包内容
      2.双击打开 project.pbxproj 文件
      3.找到以上类似的冲突信息(可以用commad + f 搜索)
      4.删除 <<<<<<<,======,>>>>>>这些行
      5.保存,退出
      6.重新打开.xcodeproj文件即可
    • 12.Xcode9报错 Safe Area Layout Guide before iOS 9.0
      操作:把Main.storyboard和LaunchScreen.storyboard如下操作

      image.png
      1. Xcode9模拟器运行App时,报错
    Terminating app due to uncaught exception 'NSInvalidArgumentException', 
    reason: 'Could not find a storyboard named 'Main' in bundle NSBundle 
    </Users/.../xxx.app> (loaded)
    
    This app could not be installed at this time.
    

    解决问题见 Xcode: “This app could not be installed at this time.”

    亲测可行
    Reset the simulator:
    `Hardware` -> `Erase All content and settings...`
    Clean your project:
    `shift`+`cmd`+`K`
    `shift`+`opt`+`cmd`+`K`
    This should fix your issue
    
    • 14.真机调试时遇到问题iOS -- xx iPhone has denied the launch request
      原因是真机调试时用的AdHod的描述文件

    • 15.真机调试时遇到问题

      image.png
      解决办法: 拼命微笑轻狂丶书生
    点击 设置 --> 通用 --> 还原  --> 还原位置和隐私
    
    然后关闭xcode, 拔掉数据线,重启xocde开启项目, 
    重新插上数据线,此时手机上会显示mac与手机设备的连接访问权限,选择“信任”,
    
      1. iPhone5 上下有黑边


        image.png

    原因是使用LaunchImage做启动图,没有加iOS7+中640x1136的图片

    相关文章

      网友评论

          本文标题:iOS-我遇到的问题(二)

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