Hi there everyone,

I have a sandboxed app destined for the Mac App Store. Inside of it is an 
embedded console program which I want to open in Terminal (i.e Terminal.app 
opens and the app runs in its window). Here’s what I’m doing:

NSString *interactiveExecutablePath = [[[NSBundle mainBundle] bundlePath] 
stringByAppendingPathComponent:@"/Contents/MacOS/app"];
[NSTask launchedTaskWithLaunchPath:@"/usr/bin/open" arguments:@[@"-a", 
@"Terminal", interactiveExecutablePath]];

When the app is not sandboxed, this works; when it is sandboxed, however, it 
fails saying that ““app” can’t be opened because CoreServicesUIAgent is not 
allowed to open documents in Terminal.”

I really need this to work as it’s an important aspect of my application. Can 
anyone advise?

Thanks,

— SevenBits

Attachment: signature.asc
Description: Message signed with OpenPGP using GPGMail

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to