Tagged Questions
The property-list tag has no wiki summary.
20
votes
6answers
485 views
Hundreds of accesses to “InputModeProperties.plist” are lagging my game (iPhone)
i have a weird problem with a bugfix for Tiny Wings. In my game i use something like:
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
[userDefaults setFloat:musicVolume ...
4
votes
0answers
234 views
Memory Leak with Plist Serialization
Please help me with this memory leak. In the leaks tool it shows a leak: NSCFString (32 bytes) in the library "Foundation" Responsible Frame: NSPropertyListSerialization. I am releasing the error ...
3
votes
3answers
233 views
Handling CFNull objects in NSPropertyListSerialization
In my application, I am trying to serialize a server response dictionary and writing it to file system. But I am getting error "Property list invalid for format" for some responses. The reason is ...
3
votes
2answers
1k views
Restoring a BOOL inside an NSDictionary from a plist file
I have a plist file which contains an array of dictionaries. Here is one of them:
Fred Dictionary
Name Fred
isMale [box is checked]
So now I am initializing my Person object with the ...
3
votes
2answers
2k views
How to test an iPhone application update?
I already have an iPhone application (version 1.0) available in the App Store and am ready to submit a newer version (version 1.1). How do I test the new upgrade to make sure that the current sqlite ...
2
votes
1answer
69 views
Different Property List format on IOS
I'm facing an issue in using Property List. I've downloaded an example and the PList format is the following:
and using this code everything works fine:
NSString *path = [[NSBundle mainBundle] ...
2
votes
1answer
647 views
What's easier to encrypt on iPhone: Core Data or Property Lists?
What type of persistent data storage would be easier to encrypt on the iPhone- core data, or property lists? By "easier" I mean require less time and complicated steps to implement.
1
vote
1answer
64 views
How to add an NSEvent to a Property List?
I'd like to encode an NSEvent using NSPropertyListSerialization, but NSPropertyListSerialization only accepts NSData, NSString, NSArray, NSDictionary, NSDate, and NSNumber objects.
Is there a ...
1
vote
1answer
773 views
Enumerate a property list item array using AppleScript
I am attempting to enumerate the RecentApplication > CustomListItems property-list item's array of a property-list file (.plist), but am having some difficulty with the syntax:
tell application ...
1
vote
2answers
333 views
NSDictionary from P-list with UIPickerView
I'm having a problem with my picker in one of my apps. I have an NSDictionary obtained from a property list that contains a bunch of keys, which in turn contain a bunch of strings. I have two ...
1
vote
1answer
49 views
Movies from property lists?
is it possible to play movies out of a property list? Like is there's a "tag" with the filename in it which gets replaced by the actual iphone/ipad player? The movies are h.265 codec...
thanks
1
vote
2answers
735 views
how can i store value in an NSArray using WritetoFile?
i wana store the index of seleted cell of table using NSArray, can u help me....
0
votes
2answers
44 views
Is it possible to transfer spreadsheet data into a property list?
I want to bundle some pre-loaded data with an iOS app. I have some raw data but that's edited in the spreadsheet. Is there any way to transfer this data into property list (.plist) format without ...
0
votes
0answers
33 views
Plist loads successfully once but not a second time when running on device
I have a problem with loading data from a plist into a NSMutableDictionary.
In the simulator, everything works. When I deploy it to the iPad, the first time I call this function everything works too, ...
0
votes
1answer
30 views
how to have a property list of dictionaries and how to append dictionary to that ? (Objective C)
How can i have a property list of dictionaries, and how can I append a new dictionary to the property list?
0
votes
1answer
834 views
Xcode 4 creating .plist
I have interesting thing here, I'm using xcode 4 for my project and I want to create simple .plist file to save several values which will be used for different purposes during code execution. This is ...
0
votes
1answer
68 views
Insert Property List plist in UML
I programmed an IPhone app, and I have to design the UML now. (I know wrong order)
Question: Are the Property Lists, where I save my data designed in UML or not? And if so, how are they connected, ...
0
votes
1answer
64 views
How to store relatively static but configurable information
I have a table (dictionary of dictionaries) to store mapping of integers to strings. I have types and sub-types. e.g. type 1=>fruits and sub-type 1=>apple.
The mapping shall be configurable in my ...
0
votes
1answer
165 views
write array of data to property list?
Hi there and thank you in advance for any responses.
I created a property list "myArray.plist" in my resource folder. In my code, I fill an array with numbers. How would I populate the property list ...
0
votes
1answer
96 views
How to put a Property List in the Documents folder of my app when app is shipped?
I have several tableviews in my app and the data source for each tableview is a property list. Currently I have the propertylists saved in the application bundle. However, thats only because I created ...
0
votes
1answer
119 views
Creating a Dictionary from a PLIST in an NSString
So, I've written this convenience method as a solution to the problem where creating an NSDictionary from a Property List isn't as easy as from a file/web resource. While I could parse this using ...
0
votes
3answers
355 views
Use line breaks of retrieved NSString
I retrieve an NSString from a Property list and display it in a UILabel. The NSString already includes \n s, however the UILabel just displays them as text. How can I tell the UILabel to actually use ...
0
votes
2answers
3k views
Looping Through an NSDictionary Read in From Property List Prooving Troublesome
Ey guys, I am reading in from a plist structured like so:
As you can see, it is a plist that contains annotation information of different types(C,Visitor). I can display each annotation type just ...
0
votes
1answer
357 views
dyld: warning, unknown environment variable: DYLD_LIBRARY_PATH_64-bit
I used the bundled Property List Editor of Mac OS X Developer Tools to set an environment variable DYLD_LIBRARY_PATH_64-bit to the value path/to/dylib in the file ~/.MacOSX/environment.plist. I saved ...
0
votes
1answer
155 views
The correct file location to store a plist on device
What is the correct filepath to store a plist on the device.
I read this in a tutorial
which will work for the computer, would like to know the file location for the device.
// write xml ...
0
votes
1answer
867 views
Can not read and save a number from/into an .plist
I created a property list with the name propertys.plist. Then I wrote this:
NSString *path = [[NSBundle mainBundle] bundlePath];
NSString *finalPath = [path ...
0
votes
1answer
81 views
Cocoa: Element count of property list without building dictionary?
What is the best way to count the number of entries in a property list?
I currently build a dictionary from the plist entries (*) and then use the dictionary's count:
NSData *plistXML = ...
0
votes
1answer
520 views
Xcode property list editor shows Mac app attributes instead of iPhone app attributes. How do I fix it?
My Xcode is configured for iPhone dev, and it worked well until yesterday.
But it's property list editor currently shows me Mac app's attributes for my iPhone project which includes 'Java', "plugin" ...