Tagged Questions
The nsbundle tag has no wiki summary.
10
votes
2answers
3k views
How can you determine if a file exists within the app bundle?
Sorry, dumb question number 2 today. Is it possible to determine if a file is contained within the App Bundle? I can access files no problem, i.e.,
NSString *pathAndFileName = [[NSBundle ...
10
votes
1answer
601 views
Why can't code inside unit tests find bundle resources?
Some code I am unit testing needs to load a resource file. It contains the following line:
NSString *path = [[NSBundle mainBundle] pathForResource:@"foo" ofType:@"txt"];
In the app it runs just ...
9
votes
1answer
1k views
OCUnit & NSBundle
I created OCUnit test in concordance with "iPhone Development Guide". Here is the class I want to test:
// myClass.h
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface ...
8
votes
4answers
3k views
core data in a static library for the iPhone
I've built a static library that makes heavy use of the Core Data framework. I can successfully use the library in my external project, but ONLY if I include the .xcdatamodel file in the main project. ...
7
votes
2answers
2k views
loading NSBundle files on iOS
I'd like to create a project that has a very flexible graphical user interface (skinnable). In order to make this possible, I'd like to load a NSBundle from an external resource, e.g. a website. The ...
5
votes
3answers
8k views
Write a file on iOS
How do a wrtie a file on iOS? I'm tring to do it with the following code but i'm doing something wrong:
char *saves = "abcd";
NSData *data = [[NSData alloc] initWithBytes:saves length:4];
NSArray ...
5
votes
2answers
1k views
NSInternalInconsistencyException Could not load nib ind bundle
I am developing an application for the iPad. The application has following details:
Base SDK: 4.2
Deployment Target: 3.2
The application is a game application and it has got 10 rounds.
In each ...
5
votes
1answer
9k views
Working with paths from [[NSBundle mainBundle] resourcePath]
I'm sure it's a very basic problem, but I'm having trouble finding anything about it.
Say I've got my app in a folder, in some more folders, like this:
MainFolder > SecondaryFolder > AppBundle.app ...
4
votes
1answer
223 views
Count of images in my [[NSBundle mainBundle] bundlePath]
How can you find count of images in [[NSBundle mainBundle] bundlePath] at particular my folder....
Eg: /Users/Nag/Library/Application Support/iPhone ...
4
votes
4answers
3k views
NSBundle pathForResource is NULL
I'm creating a simple application with xcode and objc and I need to load an NSDictionary from a file, but I can't get the path to the file using NSBundle:
NSString *l = [[NSBundle mainBundle] ...
4
votes
2answers
305 views
How can I implement the service locator pattern in Cocoa Touch across multiple projects?
This is a problem which has been bugging me for a while now. I'm still pretty new with some of these patterns so you'll have to forgive me (and correct me) if I use any of the terms incorrectly.
My ...
4
votes
3answers
2k views
NSBundle, plist and other resources in an Obj-c Static Library
I've created a static library in Xcode, which I am able to successfully use in other projects. However, with resources like plists, I find I must include any plists referenced in my library in the ...
3
votes
3answers
310 views
iPhone app crashes on device but not simulator. Accessing local files with UIWebView, possible [NSBundle mainBundle] issue?
I was hoping you guys could help me what is wrong with my code that is causing my app to crash on my device but not the simulator. It is a very simple app, I just have local files displayed in a ...
3
votes
2answers
260 views
How to get All paths for files in Documents directory?
I usually get paths by using NSBundle.
But, NSBundle does not contain Documents folder.
How to get All paths(or names) for files in Documents directory?
3
votes
1answer
232 views
How to create Resource only Bundle for iPhone
We are experimenting with delivering our nibs in language specific bundles. For a couple of different reasons this would help us out.
My questions are around setting up a resource only bundle.
...
3
votes
1answer
199 views
NSBundle folder not found on device, but works in simulator (UPDATED)
I'm having a really weird problem with the iPad app I'm writing. On startup I want to copy a folder containing a few other folders (that are empty) from the application bundle to the Documents ...
3
votes
1answer
347 views
Remap UIWebView root URL to [[NSBundle mainBundle] bundleURL]
I've got some HTML and some images in my iPhone app, arranged something like:
html/
foo.html
images/
bar.png
I can get bar.png to appear in my UIWebView a couple of different ways -- either ...
3
votes
2answers
2k views
Loading NIB using [NSBundle loadNibNamed:owner:] but the window does not appear in the foreground
I wrote a menu application that has no persistent window or standard menu. When another application has focus and I use the menulet to trigger a window to be opened, it appears behind the foreground ...
3
votes
3answers
4k views
Problem getting path to .plist using [[NSBundle mainBundle] pathForResource
I'm an Objective C noob, and I don't know enough to explain the following problem.
This code works:
NSString *plistPath = @"/Users/andrewf/MyApp/Resources/Plates.plist";
dicPlates = [[NSDictionary ...
2
votes
0answers
22 views
Localizable.strings broken since MonoTouch 5?
I opened up one of my old MonoTouch projects (coded in MT 4) after having upgraded to MT 5 and the localization doesn't work anymore. Nothing was changed since and it worked perfectly before the ...
2
votes
1answer
49 views
CFString objects being declared by [NSBundle mainBundle]
I am working on performance improvement of my ios cocos2d game. I was checking memory allocations of the app with the help of Instruments tool when I noticed one thing. There are too many CFString ...
2
votes
3answers
52 views
How to setenv (set environment variable) using mainmenu nib (xib) file in Cocoa or Xcode programming?
I am new to both Cocoa programming and Xcode. I am wondering how I can setenv (or set environment variable) using MainMenu.nib (or .xib) file. I have someone else's code in the main function like ...
2
votes
2answers
63 views
Write in Main Bundle directory. Is it allowed?
I was pretty sure that writing in the main Bundle isn't possible in iOS ... for example an operation like :
NSString *path = [[NSBundle mainBundle] pathForResource:@"Data" ofType:@"plist"];
...
2
votes
1answer
88 views
How to store key-value data for cocoa apps within the app itself?
I have an info dictionary that contains user data. Currently, it is written to an xml file in the same directory as the app. However, I'm pretty certain cocoa allows me to write this xml file into the ...
2
votes
1answer
65 views
Has anyone attempted to place compiled code in an NSBundle and load it at runtime?
If so, how did you do it? I've read up on the Mac documentation, but am not experienced at creating bundles in iOS. To be clear, the app is not going on the app store so I'm not concerned about app ...
2
votes
2answers
120 views
Resource-only NSBundle: is this kosher?
In my iOS app, I'm downloading content from the web into my /Library/Caches directory. I'd like to represent this directory as an NSBundle for better compatibility with some of the external APIs we're ...
2
votes
1answer
75 views
objective-c nsbundle
I am developing an iOS app using iOS 4.3 SDK, but I want the app to change the icon name on the iPad screen dynamically every time I closed the app.
According to my knowledge, I can do this using ...
2
votes
1answer
421 views
Get file path and URL for file in temp directory
I try to get the file path of a file called "temp.pdf" wich is located in the NSTemporaryDirectory folder (I've checked, the file exists).
I use this :
NSString *filePath = [[NSBundle mainBundle] ...
2
votes
1answer
89 views
Loading iOS app resources from a website
I'm currently working on an universal iOS application which has reached more than 100mb in size due to the heavy usage of video and sound files. I've implemented a solution for loading these assets at ...
2
votes
1answer
152 views
Why does NSBundle only return the first localization present in a bundle that matches the user's language preferences instead of all matches?
Given the localization directories returned by -[NSBundle localizations]
(en, es, it, nl)
and the language preferences set by the user as returned by -[NSLocale preferredLanguages]
( en, es, ...
2
votes
2answers
657 views
MonoTouch - How to specify image path of UIImage.FromFile()
I have a path problem with UIImage.FromFile() method. My solution folder has 3 projects and the main UI project has an Images folder in it. I put all my project images in this folder and I have code ...
2
votes
1answer
722 views
How to convert NSString path to CFURLRef (for iOS 3.1)?
I display a PDF in a UIScrollView. To do so I use :
myDocumentRef = CGPDFDocumentCreateWithURL((CFURLRef)[[NSBundle mainBundle] URLForResource:@"salonMap" withExtension:@"pdf"]);
Now, I try to make ...
2
votes
1answer
209 views
loadable bundle for plists
I have a main project and a static library project inside the main project. I want few plists in my static library project. Since there is no resource directory it is not possible to add plists ...
2
votes
2answers
2k views
NSBundle pathForResource returns nil with subdirs
I have a bunch of directories and files in my app, for instance images/misc/mainmenu_background.. I'm running the following code in the "iPad Simulator 3.2":
NSString *images = [[NSBundle mainBundle] ...
2
votes
4answers
877 views
Can't find .js file in my mainBundle?
This is driving me crazy as I cannot figure out what in the world is going on. I load up files form you main bundle all the time, xml files, html files, etc. But, now I am trying to get the contents ...
2
votes
2answers
2k views
UILocalNotification custom sound
I have been searching for a solution for hours.. with absolutely zero luck.
I set up a Local Notification:
UILocalNotification *notif = [[cls alloc] init];
[dateComp setDay:j+1];
[dateComp ...
2
votes
2answers
2k views
iPhone : Unable to copy from MainBundle to NSDocumentDirectory
I am trying to copy a couple of image files from my MainBundle/SampleImages folder to the application NSDocumentDirectory/Library folder, but am unable to do so. I have checked that the images are in ...
2
votes
3answers
572 views
Overriding preferred strings localization on the fly for testing
Using the Settings app in the iPhone simulator to switch languages is a PITA way of testing localization tweaks. I'm trying to figure out a way to switch localizations (en/fr/es/etc) on the fly in my ...
2
votes
2answers
1k views
NSBundle loading a NSViewController
I'm looking into a project that would upload custom NSBundles that include a NSViewController. In my main program I've got this code to deal with the bundle after it's been loaded...
id ...
2
votes
1answer
1k views
Using Relative Paths to Load Resources in Cocoa/C++
I am currently working directly with Cocoa for the first time to built a screen saver. Now I came across a problem when trying to load resources from within the .saver bundle. I basically have a small ...
2
votes
3answers
536 views
principal class of NSBundle
Plz help me to understand what is principalClass used for?what is the syntax of it. i understand tat it is in NSBundle Class,but can we create it for any bundles of is it specific only for laodable ...
2
votes
3answers
9k views
iPhone : Get the file path which is within subfolder of Resourse folder
i am new to iphone programming.
i want to read the content of text file which is located in subfolder of Resourse folder
Resourse Folder Structure is following
Resourse
Folder1---->Data.txt
...
1
vote
1answer
46 views
Getting nil when calling [NSBundle pathForResource] (Localization Issue)
I localized a text file in my application that currently is only supported in English
I'm using this code to get the path:
[[NSBundle mainBundle] pathForResource:@"Quotes" ofType:@"txt"]
On my ...
1
vote
1answer
34 views
Using XIB/NIB files contained within downloaded bundles on iOS
On the face of it, this seems a very simple problem but for some reason I can't quite get it to work.
I have a magazine-style app that downloads the data for each issue in the form of a zipped ...
1
vote
1answer
51 views
ipad or iphone: what is the infoDictionary key to get the copyright defined in the bundle?
I want to use the copyright placed in the bundle of the project "info plist." I cannot find the key documented. Does anyone know the value of the key?
[[[NSBundle mainBundle] infoDictionary] ...
1
vote
4answers
57 views
Get image bytes
I am trying to load the bytes of an image like this:
NSURL *img = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"img" ofType:@"png"] isDirectory:NO];
NSString * test = [NSString ...
1
vote
1answer
60 views
Application does not operate correctly when installed
I'm having a strange issue with my application for Mac OS X. I have a process that runs in a secondary thread. The process repeats a certain action a user-specified number of times in a for loop.
...
1
vote
1answer
235 views
Get filename and extension from filepath programmatically cocoa?
I know you can use NSBundle:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"foo" ofType:@"rtf"];
to get the filepath of a file, but how would I get the filename and extension ...
1
vote
2answers
65 views
how to get images from other frameworks?
I would like to have a my cursor with the same shape as in Lion
So Instead of having this:
I would like to have this:
Which can be found at:
...
1
vote
1answer
172 views
Is it possible to modify main bundle of iOS app?
I want to provide two versions of my iOS app: paid and free with ads. My goal is to keep the code base the same and change only a flag to indicate which version I want to build.
I've prepared two ...