前些天在做打电话提示的时候,遇到了警告:
_BSMachError: (os/kern) invalid capability (20)
_BSMachError: (os/kern) invalid name (15)
原因:是自己在alertAction中添加了时间,但是并未采用延时机制。
解决办法:
UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
//这里添加了多线程,消除警告
dispatch_after(0.2, dispatch_get_main_queue(), ^{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:tel]];
});
}];
另一种办法:http://stackoverflow.com/questions/32341851/bsmacherror-xcode-7-beta