
ios bug
安果移不动
精通Android,Swift,Flutter,Python,Php,按键精灵,易语言。曾为华为录制精品课程,拥有资质:按键精灵顶级证书;
产品秀:https://www.anguomob.com
B站:https://space.bilibili.com/482453235
展开
-
Xcode The request was denied by service delegate (SBMainWorkspace). Underlying error (domain=FBProce
新建一个叫anguo(随便取名)的Scheme删除Runner 以后就用anguo即可原创 2021-04-28 01:40:36 · 629 阅读 · 1 评论 -
Runner.app/Info.plist does not exist. The Flutter “Thin Binary“ build phase must run after “Copy Bun
修改内容如下/bin/sh "$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh" build.然后重新运行就可以了原创 2021-04-28 01:02:06 · 334 阅读 · 1 评论 -
Ignoring ffi-1.12.2 because its extensions are not built. Try: gem pristine ffi --version 1.12.2
sudo gem pristine ffi --version 1.12.2原创 2021-04-12 11:24:00 · 628 阅读 · 1 评论 -
xcode12 swift5 根视图 黑屏 新建rootViewController黑屏 代码设置主页
新建工程默认启动页面是故事版所以第一个改动的地方是这里改为空然后单机回车。第二步。改的是主要配置文件AppDelegateimport UIKit@UIApplicationMainclass AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? internal func application(_ application: UIApplication, did.原创 2020-10-06 07:43:40 · 1483 阅读 · 4 评论 -
The compiler is unable to type-check this expression in reasonable time; try breaking up the express
看起来没有错。 UIView.animate(withDuration: 0.2, animations: { tableView.frame = CGRect.init(x: 0, y: 40, width: screenWidth, height: (CGFloat(arr.count)*40.0 + 20.0) > screenHeight - kNaviHeight - 40 ?screenHeight - .原创 2020-10-04 22:28:28 · 5996 阅读 · 0 评论 -
Xcode10 Multiple commands produce
在拖动xib文件到另外一个项目出现的bug删除对应的lib即可原创 2020-09-17 15:03:56 · 176 阅读 · 0 评论 -
xcode 不支持http
步骤1:找到info.plist 右键 open AS->Source Code步骤2:在dict 节点中 添加如下内容<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>...原创 2020-06-08 01:13:40 · 300 阅读 · 0 评论 -
Terminating app due to uncaught exception NSUnknownKeyException, reason: 错误的解决方法
出现这个的原因是:之前我为按钮添加了一个变量,但是在代码中又把这个变量给删除了,此时关联还在,所以在运行时找这个变量无法找到,所以会出现错误,那么此时就是选择这个变量所在的控件对象右键单击,在弹出的菜单中看是否还存在着关联,如果存在则将此关联删除,删除方法就是单击关联哪里的x号,如下图所示:删除之后运行正常了...原创 2020-06-06 22:45:04 · 746 阅读 · 0 评论 -
Failed to connect to chromium.googlesource.com port 443: Operation timed out
这是因为terminal没有走代理的流量,使用git config --global http.proxy "localhost:port",设置代理。port是端口号,根据不同的vpn不一样,我这里使用的是lartern,端口是50321。端口是多少大家都不一样需要自己去fq软件上面看...原创 2020-05-18 19:33:33 · 4598 阅读 · 1 评论 -
Couldn't register com.X.XX with the bootstrap server. Error: unknown error code. 错误
错误:Couldn't register com.XX.XXX with the bootstrap server. Error: unknown error code.This generally means that another instance of this process was already running or is hung in the debugger.解决:此时stop掉另一个project然后重启xCode...原创 2020-05-14 15:36:07 · 494 阅读 · 0 评论 -
执行pod install 报错 /usr/local/bin/pod: /usr/local/Cellar/cocoapods/1.5.3/libexec/bin/pod: /Sys...
原因分析:pod 没有安装好解决步骤:安装gem 再通过gem安装pod切换到国内源ruby gem添加国内的源(新地址)删除默认的的镜像源,添加国内最新的镜像源(淘宝的那个已经不再维护)gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/查看源的指令:// 查看所有源gem sources -l// 如果出现> *** CURRENT SOURCES *...原创 2020-05-11 10:58:05 · 1712 阅读 · 0 评论