Tagged Questions
0
votes
2answers
24 views
How do I control the order for iteration of a dictionary created from plist items?
How do I control the order for iteration of a dictionary, or items from a plist?
I have a plist with 65 items. Each item is a dictionary with three items, a number (index), and two strings that are ...
0
votes
2answers
93 views
plist to tableview when root is array then dictionary
I see example and tutorial after tutorial of how to load tableview from plist when root is dictionary but I have to use a plist that is an array.
plist setup:
root Array
Item 0 Dictionary
...
0
votes
1answer
44 views
Organising data in a Plist correctly
Im at my wits end here, please assist me you beautiful people!!
My conundrum is this:
I have a list of 100 drugs. Each has a name, each has a URL associated with it, and each is in a section from ...
0
votes
1answer
35 views
iOS: Handling Multidimensional Plist
I am trying an app that can read from and write to a multidimensional Plist file.
Please consider the below Plist.
**Key Type Value**
Root ...
1
vote
1answer
40 views
Sort array by strings nested in dictionaries in the array
so I have a rather complicated plist system. Here is a image showing the data structure.
Is is possible to sort the whole 'Staff' array by the strings with the key 'name' that are nested inside ...
0
votes
1answer
36 views
get updated data from plist
i have a plist in my app- settings plist
i have 2 views
first view with call button- i get phone number from appdelegate dictionary.
second view i set phone number.
when i change phone number ...
1
vote
0answers
74 views
Loading image in tableview from plist
I've got a drill down table view loading data from a plist. I get each cell's title from the plist like so:
NSDictionary *dictionary = [self.tableDataSource objectAtIndex:indexPath.row];
...
-2
votes
1answer
158 views
Edit Dictionary String values in a .plist file
I know this must be very simple. But I can't figure it out.
I have a Help.plist file, it has a key and then a dictionary with string values.
Where is the content for these dictionarys generally held. ...
0
votes
0answers
295 views
Xcode: Save data in .plist with dictionaries
For the past couple of hours i am trying to figure out a way to save some strings into a a .plist. So, here is what i have:
I load TableView cells with data from a plist:
- (void)viewDidLoad
{
...
0
votes
0answers
81 views
Sort strings in dictionaries in an array by key?
I have a plist file containing data about people (name, title, phone, email). Instead of explaining, here is a sample showing the structure:
<?xml version="1.0" encoding="UTF-8"?>
...
2
votes
5answers
68 views
How do I randomize the questions pulled from my dictionary-plist
Hey Guys any ideas for randomising the questions that I pull from my -plist file?
-(NSUInteger)nextQuestionID:(NSUInteger)question_number{
return (question_number>=[self.questions count]-1) ? 0 : ...
0
votes
0answers
114 views
Section UITableView PList Alphabetically Multiples Keys Array of Dictionaries
I'm trying to section a UITableview with multiples keys in datasource. However, I only want the NAME to sectioned and the other to be in the details views... I accomplished what I wanted with ...
0
votes
1answer
2k views
iOS: Load dictionaries from plist file to an array
I'm trying to load the following plist file to a NSMutableArray
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" ...
1
vote
1answer
497 views
Add plist dictionary to favourites tab (TableView), using XCode 4
I use a plist containing of an array of dictionaries to fill a MainTableViewController through a MutableArray. When a cell is chosen, the reprecented dictionary are passed to the DetailViewController, ...
0
votes
1answer
170 views
Play Audio File From Plist
In my Controller.h file...I listed the NSDictionary I am using along with the items to pull. But I'm having a problem identifying the Audio Recording Variable...
@property (nonatomic, retain) ...
0
votes
1answer
149 views
Sorting keys an values
I am having difficultys sorting keys from a propertylist in IOS.
I am loading the list in to a dictionary an from that I extract the keys to an array sorting them with the metode: ...
0
votes
3answers
442 views
Writing plist with Dictionary format
I am writing information to a plist file in the documents folder and I am around 90% of the way the way there (I think). I just need some help formatting the info i write correctly.
I need to write ...
0
votes
1answer
33 views
plist - NSMutableDictionary - 0x0
I have a problem:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Settings" ofType:@"bundle"];
NSString *settingPath = [[[NSString alloc] init] autorelease];
settingPath = ...
0
votes
1answer
241 views
python 3.x xml parsing similar to plistlib?
I have GPS data stored as as .tcx file.
This is a xml file (begging of file below)
<?xml version="1.0" encoding="utf-8"?>
<TrainingCenterDatabase ...
0
votes
1answer
84 views
transforming a plist in another nsdictionary
I'm not english, new to objective c and new to this website. But i hope you will understand my problem. I tried to use the search engine but i couldn't find a answer...
THE PROBLEM:
i have a plist ...
1
vote
0answers
154 views
Python plistlib: not nesting properly?
My code:
current_bex = dict(
objectName = 'myData',
objects = list(
dict(
one = 1,
foo = 'bar',
),
), )
try:
writePlist(current_bex, ...
1
vote
1answer
861 views
Floating point numbers in dictionary plist
I have two questions. The first question is regarding the dictionary datatype that is used in a plist.
I have a few class methods that return specific floating point numbers. Rather than hardcode ...
0
votes
1answer
181 views
problem populating plist to table view
i'm trying to populate a plus to my table view. i have a table view that cams up empty the first time my app runs and i add objects to it. so far so good. i then write the table view to a plist, this ...
1
vote
2answers
2k views
Convert dictionary items from plist to NSArray
I have a plist with the following architecture/structure:
dictionary
key1
item1
key2
item2
key3
item3
dictionary
...
and i want to load item (item1) for the first key (key1) ...
0
votes
1answer
424 views
Objective C plist searching and random entry
another couple of questions about plists and objective c for the iphone.
Both questions relate to my plist which can be seen in my last last question.
First thing is to do with searching, I know this ...
1
vote
4answers
8k views
How can we create our own plist file in a Xcode project?
I want to create "UrlPaths.plist" file in my Application and also a dictionary with 4 or 5 objects. Please help me create a plist file and dictionary. And also read data from that plist file.
I want ...
0
votes
1answer
305 views
iPhone - plist data type item empty but not nil
I use a plist file to store some datas, and I have into that plist file an item whose type is Data. I use it to store a little UIImage.
When loading the NSDictonary including this item, I see that ...
0
votes
1answer
176 views
Stop using static NSStrings and move to plist dictionary instead
I am using this code below my imports to define some info. I would like to instead use a plist to pull this info. How can I switch it over?
static NSUInteger kCGRectY = 520;
static NSUInteger ...
0
votes
3answers
286 views
Get 2 strings from a random dictionary in a .plist
I am new to iphone programming. I have been struggling with this problem and have tried so many different online solutions but can't get the desired result.
I want to display 2 strings from a random ...
0
votes
2answers
260 views
Counting occurrences of specific values in several NSDictionnary within Info.plist
I have a .plist file that I use in my application for storing data, and I retrieve all the stuff in a dictionary.
Here's what the plist looks like :
(
{
firstName = "18:43";
...
0
votes
1answer
289 views
EXC_BAD_ACCESS - iPhone
My iPhone app is crashing and getting EXC_BAD_ACCESS error when using this code:
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, ...
0
votes
1answer
2k views
From pList (dictionary) to Tableview
I have an editable pList with a dictionary of strings in the format:
21-10-2010 -> @"item1"
20-10-2010 -> @"item2"
19-10-2010 -> @"item3"
18-10-2010 -> @"item4"
17-10-2010 -> ...
1
vote
0answers
746 views
Loading plist with array-->dictionaries-->dictionaries into core data?
HI,
I have a plist that comprises an array of dictionaries that each contain multiple dictionaries of strings. That is I have a:
MusicDataArray-->Mel ---->filename1
...
1
vote
1answer
383 views
Accessing data from an Array of dicionaries containing an array
I'm a bit stumped and I'm hoping someone can help me. I've got a plist which is an array of dictionaries. I'm trying to read it into a table. The plist looks like this:
<array>
...
1
vote
2answers
509 views
display next item in plist NSmutable Array using UIbutton
I am developing an iphone app that has a single View containing A UILabel. The UILabel displays strings from within a plist that is structued as follows;
...
2
votes
0answers
766 views
Plist with array of dictionaries: How do I load Item strings into a Utility style app?
I am trying to load plist data into UILabels in a utility template app that has two views. There is a flip animation that allows switching between the views.
Here is the structure of the plist:
...
0
votes
2answers
772 views
Plist array , cannot change dictonaries inside
i have a plist that's at its root an array with dictonaries inside it.
i load a plist from my recourses as an NSMutableArray.
[NSMutableArray arrayWithContentsOfFile:[[NSBundle mainBundle] ...
0
votes
2answers
4k views
iPhone: How to write plist array of dictionary object
I'm a young Italian developer for the iPhone. I have a plist file (named "Frase") with this structure:
Root Array
- Item 0 Dictionary
Frase String
Preferito Bool
- ...
0
votes
1answer
345 views
Writing to a .plist file
I have a .plist with 2 key values in it. It is of type Dictionary. I am trying to write value to one of the key values. What's wrong with the code below? I also tried using type "Array". That option ...
0
votes
4answers
901 views
Showing Random Words From Plist Dictionary - Memory Leak?
I am new to iphone development. I am "old School" - I was tought to use Procedures etc. when programming. Everything is object oriented these days but my style is still as its always been. Please bear ...
0
votes
1answer
320 views
Tracking down the version number in OSX/xcode
I have a C/C++ program which is a Firefox plugin. I'm trying to find the version number resource.
In my plist I have: Bundle versions string, short set to 5.09b and bundle version to 1.0
In my .rsrc ...
2
votes
1answer
3k views
Use a Plist dictionary for App settings
I want to be able to use a plist for settings Im implementing in my app. I want a dictionary "Settings" to hold my arrays, such as "Debug", "Option 1", Option 2", etc. How would I access "Debug"array ...



