0
votes
3answers
54 views

NSMutableArray Add and Save Objects

New to iOS and am stuck on one issue in regards to adding objects in NSMutable Array and displaying the array on another view within the App. The data displays fine on other view in TableView, but ...
-2
votes
3answers
50 views

IOS - How to load array in property list [closed]

Most of example for load data from plist is dictionary. But I have a plist with array in 1st level data, like: <plist version="1.0"> <array> .... .... .... </array> </plist> ...
-2
votes
4answers
94 views

how to store NSMutableArray in plist [duplicate]

I have NSMutableArray with name "add" that has in self name of cell (in UITableView) I want store this "add" NSMutableArray in .plist file. this is "add" code: //NSArray *NaMe; //NSMutableArray ...
1
vote
1answer
47 views

Write array to plist and fill tableview

I have a method that returns a an NSMutableArray with a bunch of strings. How can I add this array (with strings) to a plist file and use it to fill an UITableView with it? Thanks
1
vote
1answer
32 views

parsing nsmutabledictionary brings an empty uitable. what am i missing?

i am trying to show display all the words in key "word" from a plist on a remote server. the plist is as follows: <plist version="1.0"> <array> <dict> ...
0
votes
2answers
122 views

plist wont pull into my NSMutableArray. am i missing something?

So here's my code. I'm trying to display content from a plist into a table and i keep running into errors. ive been at it all day so i'm probably missing something fairly easy. hope you guys can ...
0
votes
0answers
53 views

Saving to plist file issue

I can't save my new data to plist file for some reason. This is code I have been using for saving data: -(void)saveData:(NSMutableDictionary *)dictionaryData toFile:(NSString *)filename { ...
0
votes
1answer
54 views

Adding data from plist from array

So I am new to programming and have been stuck on this for days... I have an array as shown here <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" ...
1
vote
1answer
58 views

saving NSMutableArray of object to pList

I'm trying to save an array of objects to pList when the home button or program is exited, but nothing happen and the file never seems to be created. What am I doing wrong???? //ViewController.h ...
0
votes
1answer
41 views

iOS Plist Object Count Error?

I am initializing several .plist files with 256 objects into a NSMutableArray with the following code: NSMutableArray *return_list = [[NSMutableArray alloc]initWithContentsOfFile:[[NSBundle ...
0
votes
1answer
76 views

Remove item from NSMutableArray from PLIST

I have a plist which contains a number of quiz item are pulled randomly by using arc4random (), I want to remove each item after it's shown so that no questions are repeated, I've tried using ...
0
votes
1answer
61 views

Write to dictionary in plist works but then read dictionary from plist returns (null)

This is how I am accessing the dictionary in the plist in my viewDidLoad method: NSString* documentsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) ...
0
votes
1answer
114 views

Reading an array of dictionaries from plist

Hi I'm trying to read in the values from a plist this is what my plist looks like atm <plist version="1.0"> <array> <dict> <key>Title</key> ...
1
vote
2answers
235 views

Array subscript is not an integer when loading plist

I'm very new to iOS / Objective C, but I've been programming for a number of years in a number of different languages. Our company has taken on an existing iOS application for modifications. Right ...
0
votes
1answer
77 views

NSMutableArray Meta-Data when exported to CSV file

Looking for some advice with an iOS application. Essentially what my app does is generate a CSV file that logs certain events within a period of time. So users can press a button and an entry will be ...
0
votes
1answer
180 views

Delete items from NSMutableArray through UITableView

Hi I want to delete items from a NSMutableArray through a UITableView but something crash the app. The crash is "0 objc_msgSend". Here's my code guys: - (void)viewDidLoad { paths = ...
0
votes
3answers
181 views

Accessing NSMutableDictionary inside NSMutableArray

I have an NSMutableArray of NSMutableDictionary (it's a plist). Each dictionary in the array has 2 keys: 'id' and 'lu'. How can I find the index in NSMutableArray of NSMutableDictionary where, for ...
0
votes
0answers
47 views

How to repeat an array initiation?

minecraftArray = [[NSMutableArray alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://www.avicode.co.uk/iphone/minepedia/plists/minecraft.plist"]]; What I would like to do ...
1
vote
1answer
72 views

Write data to Plist

I have plist which contains a dictionary say dict and in dict I have 3 arrays for keys A,B,C. Now I want to add an item in A,B and C under particular situation. For this my doing like this... ...
0
votes
3answers
60 views

Saving an other type than Plist with IOS

This is how I save my mutable array actually. [myMutableArray writeToFile:@"/Users/myUserIdentifier/Desktop/results.plist" atomically:YES]; The array contains basically many words and I want a ...
0
votes
1answer
64 views

Getting errors while using plist in NSMutableArray

So I am using a plist file to store a NSMutableArray and when added an object also save it to that plist file. But I am getting this error: Terminating app due to uncaught exception ...
1
vote
2answers
300 views

Write NSMutableArray to plist not working

I am using plists to save/load an NSMutableArray, the code: NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths ...
0
votes
1answer
292 views

Save/load array of custom objects to plist Objective C

The application is a simple to-do list so I've got a mutable array of custom objects. Here's an interface of the custom class: @interface Task : NSObject { NSString *name; ...
0
votes
1answer
225 views

plist for the group table view

i am new in xcode, and i am writing a table view, which load from my plist, and i would use the group style for the table view, and the section header would be the month, and each month of cell will ...
0
votes
3answers
85 views

plist array null although the plist does contain a string

I have a plist file that is copied into the docs dir from the main bundle. If the file exists in the docs already it doesn't copy it over which is how it should work. The problem I have is when I ...
0
votes
1answer
111 views

Save a mutable array with multiple properties to a plist

I have a mutable array that has about 100 objects in it and each object has three properties. I cannot save this to a plist?? I can save an array that just has objects without properites, but the ...
0
votes
2answers
39 views

Store Small Number of NSMutableArrays (with plist)?

I need store just 10 arrays in my app, which I can change from time to time. What would the best way to do this be? I have been looking into writing to a plist, good idea? Each of the 10 arrays will ...
0
votes
1answer
105 views

Populating NSMutableArray from JSON

I'm a beginner working on a presentation application that lets you pick from four different categories. Each category takes you to a UITableView which I manually populated with an NSMutableArray that ...
0
votes
1answer
326 views

NSMutableArray returning Null from plist

I have an NSMutableArray which contains a list of numbers taken from a textfield. Im trying to use the tapping of the done button to instigate saving the NSMutableArray in a plist within the ...
0
votes
2answers
412 views

removeObject from array based on index

Hi I have one viewController with a IBAction that adds a string to a Plist NSMutableArray. This Plist is then read into another viewController which is a tableView. This string from the Plist array ...
0
votes
1answer
171 views

initWithContentsOfFile Plist in viewWillAppear memory leak

I am loading in my plist files as below in ViewVillAppear. On first load I don't have a leak however pressing other tabBar buttons/items and returning to this view I get a leak. I have released this ...
0
votes
1answer
163 views

Comparing string from plist mutablearray with identical string. saying not equal

Absolutely baffling issue where if I try and compare a string in a mutable array from an external plist to a string, identical strings refuse to admit that they are the same. However, if I create the ...
1
vote
2answers
2k views

xcode NSArrayM insertObject:atIndex:]: object cannot be nil

I'm new to Xcode. what i want is read plist data locally in my program. i got NSArrayM insertObject:atIndex:]: object cannot be nil error. Here is what i declared and my plist file. Thanks ...
0
votes
0answers
145 views

property list - file name and save

I have the following doubts regarding property lists File Path - Is this the correct way to construct the file path ? if(!_xmlFilePath) { _xmlFilePath = [[NSBundle mainBundle] ...
0
votes
2answers
462 views

mutating method sent to immutable object error when using mutable array functions

My application always popping 'mutating method sent to immutable object' My dictionary and the array already declare to be a mutable one but seems it doesn't help I have tried the replaceObjectAtIndex ...
0
votes
1answer
2k views

XCode: reading data from plist into NSmutablearray

Here is my problem. I have a plist called myPlist and it looks like this: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" ...
2
votes
1answer
585 views

Bubble sort in NSMutableArray

here is my question: I have a plist with some objects in it. These objects have some keys like "age", "sex" ,"person" and etc. If values of these keys are suitable for my if statement, I add this ...
2
votes
2answers
1k views

Writing a new set of data to Plist instead of overwriting it

I'm trying to get a plist to store multiple sets of data, but each time I save (using a button from an ActionSheet), it overwrites the previous set. I want to add multiple 'friends' and their data. ...
1
vote
2answers
279 views

NSMutableArray always return null

My problem is when I read content of plist file in an NSMutableArray always return null NSString *resourceDocPath = [[NSString alloc] initWithString:[[NSBundle mainBundle]bundlePath]] ; // Create ...
2
votes
1answer
872 views

reading a plist to an NSMutableArray without using initWithContentsOfFile

I have a NSMutableArray which repeatedly will be filled with the changing contents of a plist. How do I do this most efficiently? I know I could use a second NSArray which I alloc ...
0
votes
1answer
138 views

plist and TableView

Houston, I have a problem, which I am working on for 5 days and cant fix it: So, I am working on an app which has tabBarController. On the first tab, there is a tableViewController with some objects ...
0
votes
2answers
255 views

Passing PList info to a String and then to a Mutable Array (iOS)

I'm having trouble transferring a plist file into a mutable array so I can then use it to populate a table view. I created a plist called MyDeals.plist . I made the root an array and then added two ...
0
votes
1answer
180 views

NSMutableArray in PList keeps replacing previous NSMutableArray when added to to PList

I know this is an easy one, but I just started working with plists, and I am having trouble. I can write the Array to the plist no problem, but when I try to add a second array it just replaces the ...
0
votes
2answers
723 views

Saving an object to array using NSMutableDictionary

I have been trying to add an object as an NSMutableDictionary to my array, which I am accessing from another view, and It doesn't seem to work. I want to be able to store the data in a plist which I ...
0
votes
4answers
1k views

Why doesn't my NSMutableArray write to plist?

I have the following block of code: NSMutableArray* mergedSymbolsArray = [NSMutableArray array]; for (NSDictionary* aSymbol in localSet) { ...
1
vote
1answer
147 views

Problem with reading/writing plist

I have an MSMutableArray that contains many NSDictionaries. A dictionary is just an NSString with a key "symbol". I am writing my array to a plist: + (void)writeObjectToPList:(id)myData { ...
1
vote
1answer
3k views

Read & write my Plist that has an Array of Dictionary using Xcode

here's my issue, i'm trying to create a UITableView that is able to display the Names in my plist into the cells. I can't get the names out of the Plist. guess i'm not very certain with the ...
4
votes
1answer
6k views

Saving NSMutableArray to plist? [duplicate]

Possible Duplicate: iOS: store two NSMutableArray in a .plist file In the app I'm working on I have a bunch of "Registration" objects that contain some strings,dates and integers. All of ...
0
votes
1answer
1k views

Mulitple Arrays From Plist

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <array> ...
0
votes
1answer
329 views

Objective c : problem with directory file

I have this code: NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSString *path = ...

1 2