Tagged Questions
0
votes
0answers
9 views
sending json array with putpath method
I have a json in nsmutablearray like this :
NSMutableArray *items;
(
{
name = JERRY;
year = 2013;
},
{
name = TOM;
year = 2012;
}
)
i want to ...
0
votes
1answer
22 views
Remove (not exact) duplicates of NSDictionaries from array
I have an NSMutableArray of many NSDictionaries that contain keys like "Title". In some cases there are duplicates of dictionaries with the same "Title" but differences in the other keys.
How can I ...
0
votes
1answer
37 views
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString objectForKey:]
My XML response:
{
"S:Envelope" = {
"S:Body" = {
"ns2:getMatchListResponse" = {
item = (
...
0
votes
1answer
47 views
NSMutableArray of dictionaries from JSON feed insert new object for key iOS
I receive and array of dictionaries from a JSON feed and assign it to an NSMutableArray called jsonArray i.e:
jsonArray = [deserializedData objectForKey:@"reports"];
The feed looks like this:
...
0
votes
1answer
42 views
Bubble sort NSMutableArray
I have managed with some help to sort my NSMutableArray of NSDictionaries using the NSArray function sortedArrayUsingComparator However the Array I am wanting to sort is no just based off one value.
...
0
votes
2answers
39 views
Create Array of Location Coordinates Dynamically
I've already made an app that compares the user's location to an array of locations with format...
NSArray *myStationArray;
myStationArray = @[
@{
kStation : ...
0
votes
1answer
31 views
iphone+how to sort amount string
I have amount string values like 1000, 100000, 10000000, 5000. the problem is am using sort descriptor for sorting. its sorting properly string wise but after converting to 1k, 10k, 1m, 5k its not ...
1
vote
0answers
41 views
How to Display country name and statename on button title when page is loading
My question is that when user press login button He is login to your account and then He select update user profile click all default data has been displayed and edit that data.
My response string ...
0
votes
3answers
60 views
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Home isEqualToString:]
I am fetching data from a web service:
//temp1 is NSDictionary
//responseArr1 is NSMutableArray
for(temp1 in responseArr1).......,
{
quesTxt = [[temp1 objectForKey:@"question_text"] ...
0
votes
1answer
40 views
When I press register button my app has crashed but data insert successfully in database
Here is my response code.
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSDictionary *LoginResult = (NSDictionary*)[responseString ...
-1
votes
3answers
53 views
How to retrieve all country name with counting to NSArray from NSDictionary?
Here is my dictionary result.
"continent_code" = EU;
"country_code" = gb;
"country_id" = 169;
"country_name" = "United Kingdom";
NSString *responseString = [[NSString alloc] ...
0
votes
1answer
113 views
iPhone app crash [__NSCFString objectForKey:] unrecognized selector sent to instance
I am trying to add in tempArray only even number of data.localBookmarks is array of dictionary. Here is my code :
currentIndex = indexPath.row;
for (NSDictionary *dict in localBookmarks)
{
...
-2
votes
2answers
56 views
Getting sigarbt when adding NSDictionary to NSMutableArray mutating method sent to immutable object
I'm getting sigarbt in this code
if (![newPlayerName isEqual:@""] && !thereAreJustSpaces)
{
NSDictionary *player = [NSDictionary dictionaryWithObjectsAndKeys:
...
0
votes
5answers
140 views
NSDictionary inside NSMutableArray (iOS) [closed]
I need the following as a result:
(
"some_key" = {
"another_key" = "another_value";
};
);
In order to do so, I have this code, but it doesn't work:
NSDictionary *dictionary = ...
0
votes
2answers
96 views
Accessing NSMutableArray Objects For Using On TableView
I started develop an app which is using WCF service with JSON data. I got the data from WCF service but I didn't use it as I want.
here is the JSON data:
{"MenuDoldurAndroidResult":[
...
0
votes
3answers
59 views
Sequentially ordered NSMutableArray - replacing breaks in order
I've been having a mind blank over this problem, so I thought maybe some of you could shed a light on the situation.
To cut a long story short, I am building an app that fetches a school student's ...
0
votes
2answers
90 views
NSArray not sorting in number order [duplicate]
I am looking to make an array with items from a dictionary, and then order it in descending order so that the greatest value is at the top and the smallest is at the bottom. However, it seems to ...
1
vote
1answer
63 views
Why Isn't UITableView Populating From Array
I'm a noob to iphone development (3rd day in xcode) and I'm having trouble populating a tableview from an NSMutableArray. I'm using this tutorial as my guide and my implementation of it is slightly ...
0
votes
0answers
98 views
adding textfield.text to uitableview
to make a long story short I'm building a game, I am using a uitableview with a custom cell as a scoring system. after a lot of research, questions and testing, and thanks to a few people who gave me ...
0
votes
1answer
100 views
My array of NSDictionaries returns the dictionaries with ONLY the keys and no values. How can I fix this?
I have an array of NSDictionaries. Right now this array only contains two dictionaries for simplicity.
As I am stepping through the code, each NSDictionary is created properly and contains the ...
2
votes
2answers
106 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?
...
2
votes
1answer
393 views
Split NSArray into sub-arrays based on NSDictionary key values
We have an app that calls a SOAP web service and retrieves a long list of XML, which the app then parses into an NSArray of NSDictionary objects. The NSArray contains a list of Rental Apartment ...
0
votes
1answer
117 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
35 views
File containing array containing dictionnary
I have a file that contains an array of dictionaries. How can I read it back to use it as a regular array containing those dictionaries in my code?
Thanks
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
2answers
114 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. ...
-3
votes
2answers
61 views
add array to array in array - objC
Man,just like the topic above if i want to make change directly with an exiting mutable array.
i want to know how to add a new array to an exiting array in a mutable array
Thanks for any advise!
0
votes
1answer
67 views
NSMutableDictionary entries uncomplete by init with arrays of Keys and Objects
im a litte confused by adding two NSMutableArrays to an NSMutableDictonary,one for Keys and one for Objects.
This is working as long the Keys are not the same
If there are even, I only get the last ...
1
vote
2answers
237 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
188 views
NSDictionary removing null values. Created from a JSON feed
I have null values in a couple of arrays within my NSDictionaries so I am trying to run through them and remove all the null values. Here is my attempt.
dict = [dict ...
0
votes
1answer
52 views
Retrieve values from NSMutableArray with addObjectsFromArray
BookmarksPlist is an NSMutableArray which was stored in the Plist file as a Dictionary. The following code...
bookmarks = [[NSMutableArray alloc] init];
NSLog(@"BOOKMARKPLIST ----==== %@", ...
0
votes
3answers
72 views
Is it possible to have an array of NSDictionary
I have data that's coming from the server eg.
Name
Address
Telephone
Is there a way for me create an NSDictionary like:
(
name=a_name,
address=a_address,
telephone=a_telephone
),
(
...
1
vote
1answer
263 views
How to Filter an NSMutableArray of Dictionaries?
I have an mutable array which consists dictionaries of contacts
[
{
"name":""
"Email":""
type:"A"
},
"name":""
"Email":""
type:"B"
}
"name":""
"Email":""
type:"C"
}........100 contacts
]
i want to ...
1
vote
1answer
305 views
Sorting NSMutableArray that contains NSMutableDictionary by the dictionary key's value
I have an NSMutableArray with 70 objects, they are NSMutableDictionary, inside each dictionary I have 2 values: "distance" and "indexPath". I want to sort the NSMutableArray from the small distance to ...
0
votes
1answer
264 views
Export CoreData objects into NSDictionary or NS Array
I have a Core Data Object Which is Composed of Different Types NSString, Float,NSDATA,....
<Shoplog: 0x9c78d20> (entity: Shoplog; id: 0x9c77050 ...
0
votes
1answer
469 views
insertObject: atIndex: - index 3 beyond bounds for empty array
I create an array based on a dictionaries key's:
factsBuiltArray = [NSMutableArray arrayWithCapacity: 6];
if ([statusDict count] == 10) {
for (NSString *key in [statusDict allKeys]) {
if ...
0
votes
1answer
92 views
Issues saving NSDictionary instances in NSArrays
I'm trying to copy the iOS Safari bookmark system. I have individual bookmarks working and folders in the main set working. I need help making it so I can have unlimited folders in other folders. ...
1
vote
2answers
190 views
NSMutableArray insertObject at random indexes
I have a NSDictionary that contains objects and keys. The Keys hold a Name and number. I would like to insert those objects into a NSMutableArray by using insertObject: atIndex: . Object being the ...
1
vote
1answer
313 views
How to parse this JSON response into a key & value pairs array
there are a lot of questions like this and i'm experienced with json format too but i couldnt parse the response below(at the bottom):
I'm using NSJSONSerialization for parsing the response into ...
0
votes
0answers
79 views
How to Group a list of NSDictionary in an array
I would like to implement a search in my application, but before I am able to do that, I need to store all the NSDictionary list in an array.
Here is an snippet of my code:
- (void)viewDidLoad
{
...
1
vote
5answers
2k views
How to set array value and key in NSDictionary in iphone?
Here i am using NSMutableArray to store date, then i tried to set key and assign ArrayValue in dictionary but the app crashed, please help me
Thanks in ADvance
Here i tried the code for your ...
1
vote
1answer
832 views
sortUsingComparator on NSDictionary in NSMutableArray with multiple objectKeys
I am trying to sort a mutableArray of NSDictionaries, currently I can do this by sorting with one objectForKey value, but the problem with this is that alot of these values can be the same so I need ...
0
votes
0answers
66 views
Array of NSDictionary for Table with Sections with NSMutableArray
I am pulling a list of administrators from a sqlite database and a list of sections. I want the administrators to be grouped in sections in a table. The data is pulled from the database successfully ...
1
vote
2answers
573 views
Create an NSMutableArray that contains several NSMutableDictionary objects
I've looked around and seen several postings concerning sorting NSMutableArray's that contain NSDictionaries, but haven't been able to find some concrete examples of how to actually make an ...
0
votes
2answers
805 views
Xcode: Remove objects from NSMutableArray based on NSDictionary
I am new to tableViews and dictionaries and i have a problem!
In ViewDidLoad i am initializing many MutableArrays and i am adding data using NSDictionary. Example:
- (void)viewDidLoad {
...
0
votes
1answer
988 views
Get object index in NSMutableArray using dictionary object key in iphone sdk
i'm trying to get object index from array using dictionary key object... but unable to get it.
Here are the details..
I have the Array having dictionaries....
(
{
CATEGORYID = 865;
...
0
votes
0answers
302 views
Converting a NSDictionary contents into NSData
I have an NSDictionary (which I get from querying in sqlite) which contains bytes. Here is a sample:
Rects = "<62706c69 73743030 d4010203 04050824 25542474 6f705824 6f626a65 63747358 24766572 ...
0
votes
0answers
65 views
How to store Single dictionary and array of dictionaries in an single nsmutablearray
I'm getting array of dictionaries and single dictionary from webservice.I'm storing them in an nsmutablearray and populating them in uitableview.I'm able to populate array of dictionaries in tableview ...
0
votes
2answers
1k views
Creating NSDictionary with keys that have multiple values
I have a mutable array that contains NSDictionary dic1 objects,
each dictionary has a key called contactId, more than one dictionary can have the same value for contactId.
What I want to do is to ...
4
votes
1answer
398 views
How to parse NSDictionary into array of arrays?
here is my data pattern and i want to create an array of sections, in which case, each section will include an array of rows in that section. I looked at the following questions:
2d arrays in ...
2
votes
2answers
1k views
How to convert the json string into array of elements?
Here is my code to get a json response string
I am getting this string by using this method
NSDictionary *selector = [json valueForKey: @"Title"];
NSMutableArray *dictArray = [[NSMutableArray alloc] ...





