0
votes
3answers
93 views

how to send an array as a parameter to json service in iOS

I am using iPhone JSON Web Service based app.I need to pass input parameter as an array to a JSON web Service, how can I do this? Array Contains 12 elements. Here am providing sample service... input ...
0
votes
0answers
40 views

Amazon iOS S3 how to sort file list array by date?

I'm reading files from amazon S3 bucket like: S3ListObjectsRequest *req = [[S3ListObjectsRequest alloc] initWithName:MY_BUCKET]; S3ListObjectsResponse *resp = [s3 listObjects:req]; // Array of file ...
0
votes
1answer
53 views

How do would you split this NSString into a NSDictionary?

I have some data i aquire from some linux box and want to put it into a NSDictionary for later processing. How wold you get this NSString into a NSDictionary like the following? data ( eth0 (Errors ...
0
votes
1answer
51 views

(NSString *) description — not clear on something… (Objective-C)

Let's say I have two array's. Let's imagine one is a NSMutableDictionary, the other is an NSMutableArray. I also have this defined: -(NSString *) description { // return a human readable version ...
0
votes
3answers
99 views

How to store objects of a mutable Array into another mutable array in form of arrays.?

I have an NSMutable array which contains some objects and I want to store these objects into a different Mutable array in the form of different arrays. For ex: I have an array named ...
1
vote
2answers
62 views

Performance issue when converting many floats to NSNumbers

In my application, I'm receiving a CSV file that contains 30,000 objects and for each object there are always 24 values (a total of 720,000 values). Format is something like this: ...
0
votes
1answer
14 views

Why are my integers (pulled from an array) not being checked in my if statement properly?

I've got an app playing sound files and I'm using integers to calculate the difference in pitch. The user responds with what they think the answer is and both the actual results and the user's answers ...
-2
votes
3answers
38 views

NSMutableArray adding into a cycle

I have this... allTableData = [[NSMutableArray alloc] initWithObjects: [[Food alloc] initWithName:@"1" andDescription:@"Hi man!"], [[Food alloc] initWithName:@"2" andDescription:@"Hi woman"], nil ...
0
votes
1answer
35 views

In NSMutableArray values' elements changes strangely

This is relevant code: @property (nonatomic, strong) NSMutableArray *coordinateInPixels; ... NSLog(@"First log %@",self.coordinateInPixels); NSLog(@"self.zoomScale %f",self.zoomScale); if ...
0
votes
1answer
93 views

Xcode/Parse - PFQuery NSMutableArray issue

[It may be a noob question but I've spent a lot of time to solve this issue.] Basically, I am using www.parse.com services to store my data in the cloud. I'm retrieving a NSArray called objects, and ...
1
vote
2answers
105 views

Keeping an array sorted - at setting, getting or later?

As an aid to learning objective c/oop, I'm designing an iOS app to store and display periodic bodyweight measurements. I've got a singleton which returns a mutablearray of the shared store of ...
-2
votes
3answers
94 views

Objective C removeAllObjects NSMutableArray

I have a mutable array: NSMutableArray *locations = [[NSMutableArray alloc] init]; When I call a IBAction (which could be called 1000 times if the user kept pressing it i guess) it places pins on a ...
0
votes
0answers
62 views

Can't addObject into a NSMutablearray in Assignment 4 of CS193P

I copy the Lesson 9 Demo " Favorites " about "userdefaults" code. but i found can't add object into the mutable array, so the table view datesource can't get the array. this assignment is ask add the ...
0
votes
1answer
18 views

Array Display Order

a=Array.new a=[1,2,3,4,5] puts a then output will be 1,2,3,4,5, but I want to display a[1] to a[0] (2,3,4,5,1). Are there any built-in methods for display in the above order? Thanks in advance.
1
vote
3answers
86 views

Replace, move objects in NSMutableArray

I Have an array which I have already set the capacity to 5. What I want to do is, when I add an object and the capacity exceeds 5 then it moves the whole array structure of objects by one. For example ...
0
votes
1answer
63 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" ...
0
votes
4answers
55 views

NSMutableArray not working at all

I'm trying to add sprites to a NSMutableArray but it's not adding them. This is what I have: NSMutableArray *tail; CCSprite *block; int j; -(void)handleTail:(CCSprite*)pos{ CGPoint point= ...
2
votes
2answers
125 views

iOS New array in plist with new key overwrites old array with different key

I'm using the below bit of code to add a new array into a plist, but each time I add a new array with the textfield in my app it overwrites the old one even though it has a brand new key.. any ideas? ...
0
votes
2answers
78 views

Converting NSMutableArray to float array

I have a string with lat and lon seperated by ",": NSArray* coord = [newString componentsSeparatedByString:@","]; NSMutableArray *lat= [[NSMutableArray alloc] init]; NSMutableArray *lon = ...
0
votes
4answers
162 views

Remove object from NSMutableArray after parsing JSON

The JSON source formatted with jsonviewer.stack.hu: My Parse Method (simplified): - (void)parseMethod { // OTHER STUFF arrayList = [[NSMutableArray alloc] init]; NSURL *url2 = ...
0
votes
1answer
34 views

add object to nsmutable array model

I have a nsmutable array and this is it's content: Longitude, Latitude, Name, Town this 4 entries are 14 times in my array. my problem is, that i cannot add "Distance" to my array. please help!
0
votes
0answers
109 views

Using SearchBar to search the values called from the database

I an a newbie in xcode. I am trying to use a searchBar to search the rows I have called from the database. Here's my code SearchViewController.h @interface SearchViewController : ...
1
vote
2answers
103 views

Passing array to another view

I am a newbie in xcode. I am trying to pass an array from one view to another. I want to pass an integer profileid in the ProfileViewController to an array in the FavouritesViewController. Once the ...
0
votes
1answer
100 views

Incompatible pointers types sending in Xcode

I have created two classes, one for StockHoldings, and the other Portfolio (an array). I created the values in main and am trying to add the created stock values into the portfolio, but when I do it I ...
0
votes
0answers
32 views

CIFilter outputImage to NSMutableArray [closed]

How should I add CIFilter's outputImage to NSMutableArray? Now I do it like that: [myArray addObject:[myFilter valueForKey:@"outputImage"]]; But later when I try to use it all stored images, that ...
0
votes
4answers
549 views

Checking if an array contains a certain object (iOS)

I need to check if a certain array contains a certain object, and if it does, delete that object. If it hasn't got that object, the funciton is suposed to add it into the array. The problem is that ...
1
vote
3answers
113 views

for statement loop not working as expected

I do no understand why this for loop will not loop! Any help appreciated. For some reason the i++ is not working?? The busTypeForSectionsFirst contains an array of multiple letters, i.e. A through to ...
0
votes
2answers
122 views

NSArrays and NSDictionaries [closed]

I am having a problem with NSdictionary and NSArray. What I am trying to accomplish is have one UILabel that will repeat itself with different data within a loop. The data is coming from an xml file. ...
2
votes
1answer
116 views

Having problems accessing my NSArray objects that are being loaded with sqlite data

I'm think there are some basic misunderstandings of how this should work and I would appreciate any help. I've been trying to write some functions that will pull data from a sqlite table, put it in a ...
3
votes
1answer
81 views

Object is not being deleted from NSMutableArray?

I have a NSMutableArray when I try to delete object from it, object is not being deleted. And when I debug my code there is data in it. Here is my code - NSMutableArray *myArray = [array copy]; // ...
0
votes
2answers
32 views

Creating an array in objective c which is available to all the objects of the class in which array is created

I want to create an array that is to be initialized when a function ( e.g. FillArray() ) of the class is called. After the function FillArray() will never be called. I want that this array is ...
3
votes
2answers
58 views

Creating Array with properties for each item in Objective-c

tell me please, how do I create an array in which each element will have a number of properties. For example: array: | |-item 1 ( property_1-"Name1", property_2-"LastName1", property_3-"Age1"); ...
0
votes
4answers
124 views

Setting Values in NSArray

Looked around for a while and couldn't find an answer to this, but it seems like a pretty simple thing. I want to create an NSArray that has room for 100 objects (Doors) and then just loop through to ...
-2
votes
1answer
494 views

Removing last object in NSMutablearray [closed]

Is there any why to remove last object in NSMutablearray without crashing app? :D
0
votes
2answers
82 views

How to populate tableview controller with text input

I have created a table view controller with a UITextField on it. How can I populate the tableview controller cell of the input text that came from the UITextField. I tried the following but it seems ...
0
votes
0answers
57 views

Gathering and Showing some stats from my NSMutableArray

I've tried my hardest to find the answer myself, but I am too ignorant at the moment to find any answer. Any help will be appreciated as I am stuck. I have built an app that tracks the NHL(Xbox) ...
0
votes
1answer
173 views

Array loses all values after go trough its own method - Objective C

I have this piece of code below and I'm trying to add Objects(String elements) to an array, problem is that every time I'm out its adding's method, it goes to nil, it doesn't retain the objects. I ...
0
votes
2answers
322 views

Remove all objects from an NSMutableArray that match a condition [duplicate]

Possible Duplicate: Best way to remove from NSMutableArray while iterating? Mods: I realized this was a duplicate of this question, can you close/delete it?
0
votes
2answers
90 views

Display dates for a year in a tableview

What I am trying to accomplish here is taking a tableView with a prototype cell, and display the dates in each cell for a year, or two years. I have gotten it to display todays date in the label by ...
2
votes
1answer
126 views

Adding items into a NSMutableArray property [duplicate]

Possible Duplicate: Having trouble adding objects to NSMutableArray in Objective C I have a class with an NSMutabeArray property. In one of the class's methods, I am trying to add objects ...
0
votes
2answers
74 views

Accessing my annotation in a mutable array

In my application I added a few annotations. I have a AnnotationController with a shared instance so I can access my annotations in al my classes. I push the added annotations in a mutable array. ...
0
votes
2answers
67 views

Bug in my code using NSArray crashes

I'm making a code which shows the names of people on a list. The list is different for each date, so my problem is when there is only like 1 or no people signed and I make an array with index beyond ...
0
votes
3answers
220 views

iOS app crashing with -[NSCFString count]: when trying to get count of NSMutableArray if count is only 1

I'll keep this short and sweet, because I'm sure it is something simple that I'm missing. I'm trying to get the count for an NSMutableArray that can contain a variable number of objects (id numbers). ...
0
votes
3answers
72 views

copy all elements from an array of array in iphone sdk?

i have received an array of elements from the server as web service responds. i am confused about how to handle it. i need to get those items in a single array. ( ( ( 10, ...
0
votes
0answers
97 views

get frame from object in NSMutable array xcode

the objective of this code is to automatically create an object and animate it to move across screen. once it reaches x at 120 then it is deleted. the problem I am facing is that i can not get the ...
-2
votes
1answer
54 views

How to stop reallocation of an NSArray in iPhone?

I am using an NSArray and alloc it to in viewDidload method. I have two views in my app and add data to this array from these views. The total number of rows shown in a table according to [array ...
0
votes
2answers
129 views

Trying to add an XML element NSMutableString to an NSMutableArray.. not working

I'm trying to add elements of a specific name to an NSMutableArray, which I'm getting from an XML file. I'm after the element. The first NSLog here outputs correctly: Found an element named: image ...
-1
votes
2answers
67 views

insertion sort algorithm output error [closed]

i am having the below code converted from C to Obj-C the C code lines are commented below and replaced by Obj-C , but i have a problem in the results the sort is not working properly here is the ...
0
votes
1answer
163 views

NSMutablearray define init issue

i have the following line of code NSMutableArray *marray = [[NSArray arrayWithObjects: @"4", @"1", @"9", nil]mutableCopy]; and i want to replace it with the following line NSMutableArray ...
0
votes
1answer
80 views

NSMutableArray as global var causes crash

i have the following in the .h file as global var NSMutableArray *garr; and the below in the .m file - (void)roundone { if (!garr) { garr = [[NSMutableArray alloc]init]; for ...

1 2 3