Regarding Objective-C on iOS application, I read some sample program in the Apple developer website and I found that almost all of the applications contains a word called \'NSBu
Suppose our code is:
NSString *myFile=[[NSBundle mainBundle]pathForResource:@"subjects" ofType:@"plist"];
We create subject.plist in Xcode (File> new> new file> iOS> resource> property list) and copy it into our supporting folder.
This is really a way of getting to files installed on the iOS device when we do not know where they are. It's a way to obtain our subject.plist
file, which is a part of the internal Bundle or internal package for our application. We don't have direct access to a file system on an iOS device, so this is the way we get hold of our own assets.