I'm trying to sandbox my app before submitting to the Mac App store and I need to open a dmg file. I tried the following, but I don't know if it's supposed to work with the Apple Sandbox.

NSTask *task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/bin/hdiutil"];
[task setArguments:
 [NSArray arrayWithObjects: @"attach", [NSString stringWithFormat:@"%@/myfile.dmg", documentsDirectory], nil]];
[task launch];
[task waitUntilExit];
if (0 != [task terminationStatus])
    NSLog(@"Mount failed.");
[task release];

If I paste the full path into the terminal it work, if I run from the app I get the following error:

diskimages-helper[11437:303] ERROR: couldn't connect to framework.
diskimages-helper[11437:303] DIHelper: setupConnectionToFrameworkWithUUID: failed
hdiutil: attach failed - No child processes
Mount failed.

Thanks for any help! S.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

As you're planning on the Mac App Store you must be an Apple Developer. Go to the forums and look in the sections "Mac App Store" and "Application Sandboxing" and you will find your answer (search for hdiutil). Sorry, repeating it here would be redundant and may break NDA...

link|improve this answer
Found it, don't like the answer there though :( Thanks anyways! – user375584 Feb 2 at 21:29
I am unable to find anything pertaining to hdiutil and sandboxing in the developer forums - could you post a URL for the rest of us please? – glorifiedHacker Mar 19 at 6:44
@glorifiedHacker - Sorry, no. See my original answer. – CRD Mar 19 at 8:46
2  
I'm not sure how posting a URL that requires developer authentication would violate the NDA, seeing as only developers who are bound by said NDA can access the contents of that URL. Oh well... – glorifiedHacker Mar 24 at 5:24
feedback

Your Answer

 
or
required, but never shown

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