I'm using sandboxing in for my Mac app. I need to set a property to IOKit like so,

IORegistryEntrySetCFProperty(reg, CFSTR("IORequestIdle"), kCFBooleanTrue);

Because of app sandboxing, the system will not allow me to do it. If I turn off app sandboxing, the property is set properly.

The error message I get in the console is as follows, deny iokit-set-properties IORequestIdle

Is there a way for me to set a temporary entitlement so that I can do this properly. If so, how do I go about doing so?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Short answer is no. If you could turn entitlements on and off as you please, then the sandbox serves no purpose.

Unfortunately, this probably means you cannot do what you are trying to do. If there isn't a work around, then you won't be able to submit your app to the app store after March 1, 2012.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.