Tagged Questions

Per Apple's email to Developer Center members: As of March 1, 2012 all apps submitted to the Mac App Store must implement sandboxing. Enabling the default sandbox environment is as simple as checking the Enable Entitlements checkbox in Xcode target settings, allowing you to begin ...

learn more… | top users | synonyms

12
votes
1answer
192 views

Alternatives for CGEventPostToPSN() for activating an other app's menu item in a sandboxed environment?

I have this app where I need to activate an other app's menu item (like Print cmd+p) from within my app. Right now I'm using CGEventPostToPSN() to do the job and it works fine, but when I activate ...
8
votes
1answer
407 views

How will Lion's New Security Model Affect things like Python?

I'm curious to know how the new security model in OS X Lion will affect the future. Specifically, I'm questioning Entitlements and Sandboxing. This isn't a question of whether or not these are good ...
4
votes
0answers
136 views

Mac Sandboxed App Loses File Permissions to Other Apps

I'm developing an app that is currently sandboxed. It acts as a basic text editor. Recently, I wanted to test what happens when I open a file in my app and another app at the same time, make an ...
3
votes
3answers
139 views

Getting path to users Library folder in Osx

I need to open a NSSavePanel with the users Library folder as destination folder. Normally I would do this by entering "~/Library/" in [NSSavePanel beginSheetForDirectory]. This works fine as long as ...
3
votes
1answer
94 views

How to set temporary entitlements for IOKit properties?

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 ...
2
votes
2answers
52 views

how can I run a sandboxed OS X app without sandboxing?

I have an app which runs using sandboxing. How can I run it without sandboxing? Suppose I can't just recompile the app with sandboxing off.
2
votes
1answer
228 views

Non in-place saving in OS X sandbox

I'm developing a sandboxed app for Mac OS X 10.7 and I'm trying to implement file saving in a way similar to NSDocument: Rewrite the file's new contents to a temporary file Overwrite the original ...
2
votes
1answer
185 views

Mac Sandbox and XCode 3.x

Is there a way to be Sandbox-compliant compiling apps with XCode 3.x? Are there any articles or tutorials out there on how to do this? I'm the developer of a Mac application and I'm stuck with XCode ...
2
votes
2answers
92 views

Can I submit a Mac App without enabling Sandboxing?

As I heard that Mac Apps submitted must enable sandboxing. Because I want to use NSRunningApplication.terminate, and it doesn't work with sandboxing.
2
votes
0answers
257 views

Mac OS X: Open file in finder + App Sandbox

I try to open a finder window which works fine but every time i am doing this there is 1 second delay and an error logged. [[NSWorkspace sharedWorkspace] selectFile:@"Users/[TheUser]/Downloads" ...
1
vote
1answer
17 views

Storing file out of sandbox in iphone or Accessing filesystem by other applications

The main objective of my application is to download pdf, html, doc etc file types from server and read it. Now the requirement is , the files i have downloaded should be accessible by other reader ...
1
vote
0answers
42 views

Mac app sandboxing and forkpty()

I'm looking to sandbox an app to comply with the March 1st sandboxing requirement on the Mac App Store. My app includes a built-in terminal emulator which utilizes on a forkpty() call to launch ...
1
vote
1answer
70 views

SQLite-based NSPersistentDocument in a sandboxed environment

I'm attempting to bring a Mac app up-to-date with the new sandboxing rules in Lion. However, despite requesting com.apple.security.files.user-selected.read-write permissions, I'm getting errors. When ...
1
vote
1answer
92 views

Are Mac App Store apps allowed to read .plist files of other apps?

Is it allowed for Mac apps available on the Mac App Store to read .plist files of a (built in) app or do I need to sandbox it completely (Scripting bridge does not provide the functionality)?
0
votes
1answer
29 views

Sandbox with NSTask

I have sandboxing enabled and use /sbin/ping with NSTask: [task setLaunchPath:@"/sbin/ping"]; [task setArguments:[NSArray arrayWithObjects:@"-c10", iPAddress, nil]]; Everything works great and I ...
0
votes
1answer
87 views

Sandbox and NSTask

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 ...
0
votes
0answers
48 views

Mac App Store Sandboxing - Writing a new file?

I've been playing around with an app I want to submit to the Mac App Store, and part of the functionality is simply grabbing a file the user chose by dragging or opening, and saving a modified of it ...
0
votes
1answer
50 views

How to keep list of files or folders on Mac sandboxed app?

I wonder is it possible to keep list of files or folders opened before on sandboxed app without re-opening them or copying to it's own library ? Thanks in advance