最近在看Extension相关知识的时候,自己写了个小demo 发现[UIApplication sharedApplication]这个方法敲不出来了, 总是报错:'sharedApplication' is unavailable: not available on iOS (App Extension) - Use view controller based..... 在网上找了一些觉得办法,大多都是在说把cocoapods卸载了重装的 但很明显  我的问题不是由于这个原因导致的 然后我问…
在 iOS9 中现在找不到 XXX.dylib 了,比如libz.tbd  如果要用到 libz.dylib,可以用下面的办法,来自 Stack Overflow. Go to Build Phases >Link Binary with Librairies > + > Add other Once in the file selection window do “CMD”+Shift+G (Go to folder) and type /usr/lib/ From /usr/lib…
Xcode 9.0 新建工程报错 xcode Safe Area Layout Guide Before IOS 9.0 如下图,在Builds for 选择iOS9.0 and Later,不勾选Use Safe Area Layout Guides,否则会导致用不了iOS的这个新功能了.…
Django 报错 Reverse for 'content' not found. 'content' is not a valid view function or pattern name. 我这边的原因是由于命名空间的错误导致的bug from django.urls import path from . import views app_name = 'energy' # 给app命名空间 urlpatterns = [ path('search/', views.search, na…
今天在安装完nagios后,通过nagios网页界面点击主机.服务.问题页面时.均报错,报错的内容都差不多.如点击服务,报错: It appears as though you do not have permission to view information for any of the services you requested...  如下图所示:    百度了下,好多文章基本都是一样,改/usr/local/nagios/etc/cgi.cfg文件里的一个参数 use_authent…
遇到这个报错的时候,不要慌 Error:Execution failed for task ':app:processDebugManifest'. > Manifest merger failed with multiple errors, see logs 这个报错肯定是你导报依赖出的问题,我看很多人的解决方案都是复制复制,烦死我了,搞了我一晚上都没搞好 我现在来说,真正的搞定方案第一步: 在Manifest.xml的application标签下添加tools:replace="And…
1. 问题 重启vcenter,登陆vsphere client,提示 “503 Service Unavailable (Failed to connect to endpoint: [N7Vmacore4Http20NamedPipeServiceSpecE:0x0000558181b429e0] _serverNamespace = / action = Allow _pipeName =/var/run/vmware/vpxd-webserver-pipe)” 2. 解决方法 重启VCS…
首先考虑数据库是否打开? 第二重启IIS试试: 重启下iis试试(cmd接着iisreset) 再次访问就正常了,可以借鉴,但不一定就只是这一种原因.…
解决方案就是: 第一步 第二步 第三步 重新编译.…
启动gunicorn报错: # gunicorn -b :9008 -w 2 webserver:app 2013-12-10 09:12:58 [29701] [INFO] Starting gunicorn 0.14.3 2013-12-10 09:12:58 [29701] [INFO] Listening at: http://0.0.0.0:9008 (29701) 2013-12-10 09:12:58 [29701] [INFO] Using worker: sync 2013-1…