0
votes
1answer
36 views

NSpredicate Results

I have array compose of 2 dictionaries . The first dictionary is grouped by Services and gives me the numbers of Companies that has the same service in a array containing my second dictionary with all ...
0
votes
2answers
61 views

Need to loop through an array that is inside of another array

I have an array that contains 2 objects. In order to store it on my backend server service, I need to store it inside of another array. So later on, when I call my server and tell it I want the array ...
1
vote
1answer
248 views

Searching in UItableview - Using Nested Array NSpredicate

I'm having a lot of trouble trying to figure out how to displays my filtered search results on the UItableview . My displays methods work very well ... but when I try to search for a specific data ...
1
vote
1answer
100 views

Error in using NSMutableArray

I am trying to populate an NSMutableArray here named "data" with NSArrays. When I try to retrieve I get EXC_BAD_ACCESS. Here is my code for poulating .h @property (nonatomic, retain) ...
0
votes
2answers
240 views

How to fetch data from a Nested Array according a key in a array

Hello frnds actually i have a array of arrays as given below:-` parrent array{ PrArr = ( { dt = "01-Apr-2012 11:15 PM\n"; dur = ...
1
vote
1answer
2k views

Using NSPredicate in 2D Arrays

This question is based off of the same app/source from my previous question which can be found here: How to manage memory using classes in Objective-C? I have a nested array which looks something ...