博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
_BSMachError: (os/kern) invalid name (15)
阅读量:6157 次
发布时间:2019-06-21

本文共 936 字,大约阅读时间需要 3 分钟。

hot3.png

_BSMachError: (os/kern) invalid name (15)

_BSMachError: (os/kern) invalid capability (20)

解决方法

在程序运行的时候,如果点击文本框,键盘弹出,则会在控制台打印出如下警告:

_BSMachError:(os/kern) invalid capability(20)

_BSMachError:(os/kern) invalid name(15)

以上警告是在Xcode7.1以上版本中才会出现的警告,解决方法:

在工程的info.plist文件中添加如下内容:

[html]  

 

  1. <key>NSAppTransportSecurity</key>  

  2. <dict>  

  3.     <key>NSExceptionDomains</key>  

  4.     <dict>  

  5.         <key>testdomain.com</key>  

  6.         <dict>  

  7.             <key>NSExceptionAllowsInsecureHTTPLoads</key>  

  8.             <false/>  

  9.             <key>NSExceptionMinimumTLSVersion</key>  

  10.             <string>TLSv1.2</string>  

  11.             <key>NSExceptionRequiresForwardSecrecy</key>  

  12.             <true/>  

  13.             <key>NSIncludesSubdomains</key>  

  14.             <false/>  

  15.             <key>NSRequiresCertificateTransparency</key>  

  16.             <false/>  

  17.             <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>  

  18.             <false/>  

  19.             <key>NSThirdPartyExceptionMinimumTLSVersion</key>  

  20.             <string>TLSv1.2</string>  

  21.             <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>  

  22.             <true/>  

  23.         </dict>  

  24.     </dict>  

  25. </dict>  

转载于:https://my.oschina.net/gongxiao/blog/625723

你可能感兴趣的文章
Cause: java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
查看>>
quratz线程
查看>>
execnet: rapid multi-Python deployment
查看>>
windows修改3389端口
查看>>
关于JavaScript词法
查看>>
FreeSwitch中的会议功能(4)
查看>>
MySQL中创建用户分配权限(到指定数据库或者指定数据库表中)
查看>>
AutoReleasePool 和 ARC 以及Garbage Collection
查看>>
重新想象 Windows 8 Store Apps (9) - 控件之 ScrollViewer 基础
查看>>
乐在其中设计模式(C#) - 提供者模式(Provider Pattern)
查看>>
MVP Community Camp 社区大课堂
查看>>
GWT用frame调用JSP
查看>>
大型高性能ASP.NET系统架构设计
查看>>
insert select带来的问题
查看>>
EasyUI 添加tab页(iframe方式)
查看>>
mysqldump主要参数探究
查看>>
好记心不如烂笔头,ssh登录 The authenticity of host 192.168.0.xxx can't be established. 的问题...
查看>>
使用addChildViewController手动控制UIViewController的切换
查看>>
Android Fragment应用实战
查看>>
SQL Server查询死锁并KILL
查看>>