下面的代码在我的MAC上运行良好,但是将应用程序提交给Apple审核后,他们说与应用程序沙箱规则存在一些冲突。
OSStatus error = noErr;
error = SendAppleEventToSystemProcess(kAESleep);
if(error!=noErr){
NSLog (@"%@",[NSString stringWithFormat:@"%d",(int)error]);
return;
}
我使用上面的代码尝试在错误发生时捕获错误。
但是在我的Mac上,它始终可以正常运行,没有任何问题/错误。
只是想知道是否有任何方法可以在自己的开发Mac上检测应用程序沙箱环境/参数?