0
votes
2answers
45 views
Restore backlight To Previous Level, iPhone
Hi there,
I was working on my app recently and wanted to change the brightness of the backlight. I then wanted to restore the backlight level to it's original setting on exiting t …
1
vote
4answers
72 views
What is the use of plist ?
In my application i am using a plist. please anyone explain what are the uses of plist with an example or a sample code?
0
votes
2answers
25 views
How to pass a .plist file with php?
Can i pass a plist file with php and kind of get it into an array, like the $_POST[''] so i could call $_POST['body'] and get the string that has the <key> body ?
1
vote
2answers
42 views
How to read OSX .plist files from Java?
How to read OSX .plist files from Java? Thank you in advance!
3
votes
5answers
127 views
Is there a better way to serialize plist-y objects in Objective-C?
I like the plist serialization capability for small collections of objects: it is simple, the storage is XML, etc. But I find setting values in dictionaries cumbersome:
[myDict se …
0
votes
1answer
23 views
“plist” doesn’t load from iPhone unit-test class
I'm trying to unit-test code for loading and querying data from plist file. I'm loading data with code:
NSString *path = [[NSBundle mainBundle] pathForResource:@"availableshops" o …
0
votes
1answer
11 views
Copying plist file to custom folder in ApplicationSupport (Objective-C)
I have this piece of code, which copies a plist file to the ApplicationSupport directory in the users folder.
NSString *resourcePath = [[[NSBundle mainBundle] resourcePath] string …
0
votes
1answer
18 views
Plist Hierarchy and ‘All’ Option
I have a string of data in a plist, which I've got to display, hierarchically like this:
Menu>Chapter>SubChapter>item>item details
This might be super simple, in my initial menu, …
0
votes
1answer
54 views
iPhone plist file versions… Adding keys sometimes does not work.
I created an iPhone project using the Core Data template. Now when I try to change my plist file to "Status bar is initially hidden = YES" I can't find that key in my options. Inst …
0
votes
2answers
38 views
Plist works in simulator but not on device
Is there any reason that data pulled in from a plist will show in the simulator but not on my test device? Worked all day on making it work and was thrilled until I tested it on th …
0
votes
1answer
47 views
Changing Data in a Plist
Hey, alright so I have a .plist that looks like;
<plist version="1.0">
<dict>
<key>Item 0</key>
<dict>
<key>Name</key>
<string> …
1
vote
1answer
61 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 m …
0
votes
3answers
55 views
How to extract the second record from my plist?
I have a sample database file called albums.plist
It is structured as below (very simple layout).
I am new to Objective-C programming and would learn a lot if someone is able to h …
0
votes
1answer
107 views
Updating & changing settings plist files with new versions of an app
Hi there,
I've got a default settings plist file in the resources folder of my app, and on the first launch that gets copied to the documents folder.
In successive versions of th …
2
votes
2answers
103 views
How do I append a new item to a plist?
In my iPhone app, I have two plist files to store "Themes". One is a read-only file containing default themes, and one contains custom Themes that the user has created. I'm using p …
