随笔分类 - ios - mac
摘要:Unity项目,不带任何SDK导出项目是没有问题的,一旦加入Admob, facebook之后,就会出现:CocoPods Installation failure 升级MAC OS系统,升级SDK版本,升级Unity版本时,该问题是经常发生!发生该问题表示项目中用pod管理的sdk未下载下来配置好
阅读全文
摘要:chmod a+x ./MapFileParser.sh 操作如下:
阅读全文
摘要:在Windows10上用Unity4.7导出项目,然后拷贝到MacMini上用XCode14.2编译构建项目。尝试下发现有不少问题,最后没有能成功打包。走过路过的高手,知道这其中缘由的还请指教下,不胜感激! libstdc++.a 库文件缺失 库文件缺失,解决办法:用Xcode 9.3版本补充即可,
阅读全文
摘要:对于Mac Mini Apple M1 2020来说,因为更新到了MacOS 13.4.1 ,在该设备上不能打开Unity 2017/2018了。所以采用另外的方式来构建ios版本:在windows10系统上导出ios build, 然后把该build拷贝到mac minini上来构建。尝试了该方式
阅读全文
摘要:一时手贱把Mac Mini M1 2020升级到了最新的 MacOS Ventura 13.3.1, 发现Unity 2017/2018不能用了,启动黑屏并且一直卡在黑屏。 原因为:Unity versions prior to 2019.4 do not support running on Ap
阅读全文
摘要:Unity打包时报错: MacOS Unity UnauthorizedAccessException: Access to the path `/Applications/Unity2018.4.23/PlaybackEngines/iOSSupport/Trampoline/build/Shar
阅读全文
摘要:Unity "xxx Class" is missing the class attribute 'ExtensionOfNativeClass'翻译:‘xxx Class’缺少类属性 `ExtensionOfNativeClass` 这个就是当脚本继承了MonoBehaiour, 才会有这个属性;
阅读全文
摘要:发布过unity+admob iOS包的开发者应该都有体会,构建版本时unity会很长时间卡在pod install这个过程中,特别是在第一次执行构建xcode项目时,可能整个过程耗时要一个下午! 在这个过程中它会把 https://github.com/CocoaPods/Specs.git 克隆
阅读全文
摘要:环境如下 os: macOS Monterey 12.6, XCode 14.2执行命令: sudo xcode-select -s /Applications/Xcode.app sudo xcode-select --install sudo gem install -n /usr/local/
阅读全文
摘要:几年前买了一个iPhone6,刚用不久就黑屏了。在维修期间就拿公司的测试设备来用,在维修的那几天中因为频繁的切换设备登录QQ,导致QQ账号异常被封掉了。起初对于QQ被封了,不怎么在意,因为大部分的时间内用的都是微信。 某一天,当我想要在iPhone 6上安装某个软件时,我发现我忘记Apple ID密
阅读全文
摘要:获取联系爱加密支持人员,他们会发给你最新的爱加密工具包 ijiami-clang-tools。 安装首先获取要安装机器的UUID和en0的MAC地址,将这两个信息发送给爱加密人员,爱加密会根据机器信息生成授权Key,我们在拿到授权Key之后,用文本编辑打开ijiami.key文件,将新的key写入该
阅读全文
摘要:近期打算申请一个苹果个人开发者账号,期间遇到了一些问题,记录下来供参考。 使用已有的Apple ID注册个人开发者账号:大约在2017/2018年注册的Apple ID,期间用的少,现在拿来注册开发者账号。在苹果手机上按照App Developer的指示按步骤操作,然而在付款一步卡住了。打苹果客户支
阅读全文
摘要:显示隐藏文件 $ defaults write com.apple.finder AppleShowAllFiles -boolean true $ killall Finder 不显示隐藏文件 $ defaults write com.apple.finder AppleShowAllFiles
阅读全文
摘要:问题1: Specs satisfying the 'Google-Mobile-Ads-SDK(->7.68)' dependency were found, but they required a higher minimun deployment target. 解决办法: 把Minimun
阅读全文
摘要:How to solve this problem? Solution no. 1: Solution no. 2: Solution no. 3: Open termina and copy pastplease use following command $ cd ~ $ mv .itmstra
阅读全文
摘要:一、原理Beyond Compare每次启动后会先检查注册信息,试用期到期后就不能继续使用。解决方法是在启动前,先删除注册信息,然后再启动,这样就可以永久免费试用了。 二、下载首先下载Beyond Compare最新版本,链接如下:https://www.scootersoftware.com/download.php 三、安装下载完成后,直接安装。 四、创建BCompare文件1.进入Mac应...
阅读全文
摘要:升级Xcode之后,编译之前的代码,出现Cannot create __weak reference in file using manual reference counting解决方法: 在Build Settings--------->Aplle LLVM9.0 - Language - Objectibe-C------------->Weak Reference In Manual Re...
阅读全文
摘要:sudo rm -rf /Library/Developer/CommandLineTools xcode-select –install sudo xcodebuild -license accept open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg Ref: http...
阅读全文
摘要:报错显示写的很明白,该特性不支持iOS9.0以下的系统,那么是不是将支持版本提高呢?其实并不需要这么做,新特性已经可以让你限制支持的版本,正确的方法就是将该特性调成9.0以后的系统,正确做法如下: Ref: https://www.jianshu.com/p/f497ae0c21e7
阅读全文
摘要:Like a lot of things, the process of creating a launch screen for an iOS app has changed over time, and not necessarily for the simpler. Originally I had a launch screen image set in the Asset Catalog...
阅读全文