Tagged Questions
The app-bundle tag has no wiki summary.
2
votes
0answers
79 views
Monomac An Exception as thown by the type initializer for System.Net.WebRequest
I'm writing a program in monomac to ftp files to a server. I used the FtpWebRequest as
FtpWebRequest request =(FtpWebRequest)WebRequest.Create("ftp://serverip/filename");
When I'm running this code ...
1
vote
1answer
83 views
Create (sane/safe) app bundle identifier from any (unsafe) string
I want to create a sane/safe app bundle name (i.e. somewhat readable, no "strange" characters, etc.) from some random Unicode string (mich might contain just anything).
(It doesn't matter for me ...
1
vote
3answers
226 views
Distributing a C command line tool in a OS X .app Bundle
I wrote a C command line tool which uses GLUT to visualize a genetic algorithm and I want to distribute it in a Mac OS X .app Bundle.
How do I do that? Are there any helper tools available for this?
...
1
vote
0answers
491 views
How to create an application bundle in Xcode?
Alright, I have just finished coding an application in Xcode... How do I create an application bundle out of this? I tried using the "Release" build configuration, but on a tester's computer the ...
0
votes
2answers
31 views
Save image on disk and associate it to managed object iphone
I need to save an image picked by an image picker on disk and than associate it to a managed object.
I want to store the image path in the managed object (imagePath attribute is nsstring) but I don't ...
0
votes
2answers
435 views
iPhone: move resources to Application bundle
My application just got rejected from Apple because I store my resources under Documents folder! The Documents folder gets synched to iCloude automatically so only user generated data should be stored ...
0
votes
1answer
34 views
Qt: OSX: Where to put (both file manager and exec accessible) resources?
im a bit confused about the most proper way to manage resources (files and folders) needed by the application.
I make it clear:
I have an executable ( developing on mac osx with qt ), and a i have a ...
0
votes
0answers
56 views
Create (sane/safe) app bundle name from any (unsafe) string [closed]
Possible Duplicate:
Create (sane/safe) app bundle identifier from any (unsafe) string
I want to create a sane/safe app bundle name (i.e. somewhat readable, no "strange" characters, etc.) ...
0
votes
2answers
289 views
Bundle a python script into an OS X App, but
I currently have a script that I'm using to update files for me from a couple repositories. The script works fine if I execute it using:
python myscript.py
However, when I attempt to bundle into an ...
0
votes
2answers
171 views
Why doesn't this sample code from Apple work?
I am trying to find the full path for a file called 'file1.jpg'
I have verified that it is in the app bundle and yet when I run this code:
NSBundle* myBundle = [NSBundle mainBundle];
NSString* ...
-2
votes
1answer
84 views
How can I save a file into appbundle
I have an image named my-image. Can I save this image to the application bundle? If yes, can you provide me the code or paths.
As of now, I have the following code –
NSData * imageData = ...