An immutable, integer indexed, array of objects from Apple Foundation framework.

learn more… | top users | synonyms

0
votes
1answer
25 views

TableView crashing if Empty Array, how to fix?

I'm using RestKit to pull data from a web service API, and when the API response with an empty array for "Image", the UITableView crashes. I was wondering if an "if statement" would be best to solve ...
0
votes
1answer
11 views

filtering array with dictionaries using nspredicate fails

I'm trying to get an NSDictionary out of an NSMutableArray using a predicate: NSMutableArray *arr = [NSMutableArray arrayWithArray:[self createArrayFromCSV:savedCSV withDelimiter:delim ...
0
votes
0answers
21 views

Using Parse to query through Facebook Friends

I am using https://parse.com/ as my MBSAAS for iOS. When the user logins with Facebook I make a request for friends: NSMutableArray *facebookIds = [[NSMutableArray alloc] ...
2
votes
3answers
52 views

Sort UITableView by text width iOS

I'm trying to populate a UITableView with an array in a particular order. So far I can change the order in these ways alphabetically character count I can run loops to reverse the strings in the ...
0
votes
2answers
40 views

How do I assign one Array to another Array in objective-c?

*emphasized text*So I'm using restkit to pull back a bunch of objects to display in a UI Collection view. I get my initial mapping result, which is an NSArray of MyCell Objects. I invoke the given ...
0
votes
3answers
39 views

Passing NSArray to Detail View using Plist?

I'm currently using the following plist to create a drill down table view. However, I'm having problems passing the array of children over to the DetailViewController. <plist version="1.0"> ...
0
votes
3answers
26 views

How to sort an NSMutableArray based on multiple attributes and non-attributes (methods)

I having problems to sort an NSArray of custom objects. The NSArray has to be sorted by a method that returns an int value (so it's not an object's attribute) and by an attribute that belongs to the ...
-1
votes
2answers
41 views

Truncate string values from txt file and add to array

I have a txt file which was copied to Supporting Files of my Xcode project.The data in txt file is of format: abacus@frame with balls for calculating abate@to lessen to subside abdication@giving up ...
-1
votes
1answer
37 views

Run code For each element of an array [duplicate]

i have the following code DownloadOperations *DataObj=[[DownloadOperations alloc]init]; [DataObj ID]; NSString *body=[NSString stringWithFormat:@"<?xml version='1.0' ...
0
votes
0answers
26 views

Re order NSString

I am using the Aviary SDK for an app and am confused about how to re-order the strings. This key allows developers to customize the visibility of, and order in which tools appear in the SDK ...
0
votes
1answer
33 views

Group and count NSArray Objects

I have an NSArray of objects. Each object has following properties/attributes Name,Id,TYPE. Name and id are dependent . i.e. if Id is 12345 and Id is AAAA then for all object with Id 12345 Name is ...
0
votes
3answers
57 views

Adding NSArray items to UITableViewCell content view

In my app i am adding 3 UILabel to each Table view cell in the following way. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static ...
0
votes
0answers
23 views

Is it possible to use SUBQUERY to return averages in an NSArray?

I recently stumbled across the SUBQUERY function in Objective C, however, despite Google-ing/reading what I could find - I don't quite get it. There seems to be limited documentation for 'beginners' ...
0
votes
1answer
23 views

How to add a search Icon as section for SearchBar in UITableView using search controller

I am trying to add the image for search (magnifying glass) as the section, to easily go to the search bar. This is the issue I am experiencing: My code to setup the sections is as follows: Note: ...
0
votes
1answer
43 views

Search controller searching an array of dictionaries

I am trying to follow two tutorials on how to implement a search controller for a UITableView. This is all working ok so far the issue I have is with the search/filter itself: Tutorial links: ...
0
votes
0answers
23 views

iOS 5: NSDictionary encodeWithCoder inserts nil into array

I am seeing a problem that seems to be unique to iOS 5, where trying to encode a dictionary results in a crash because an array is populated with a nil object in the process. This is confusing to me ...
0
votes
2answers
38 views

Passing an array with prepareforsegue

I trying to pass an array through prepareWithSegue but I get null when I launch the app this is the code : -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { if ...
0
votes
1answer
19 views

Working with NSArray and NSDictionary to store facebook friends to later be used in application

I am trying to work with NSArrays and NSDictionarys to store the users facebook friend information. The data will later be used in a table view. Ideally I would like the information to be stored ...
-3
votes
1answer
68 views

no visible interface for NSArray declares the selector 'objectAtIndex' [closed]

Sorry about this beaten horse. But I cannot find this answer. What do do to make the following code have a visible interface? NSValue* selCommandA = [NSValue ...
0
votes
1answer
19 views

Iam adding the array in to the dictionary then remove the all objects from array

Iam adding the array in to the dictionary then remove the all objects from array. When i print the dictionary it is also shows empty.Means the array data present in dictionary also removing. if ...
0
votes
2answers
47 views

Unable to change NSNumber to Double and do some calculations with it

my problem is that i have an Array that holds some double values NSArray *level4results = [context executeFetchRequest:request error:&error]; then i sum up all the values in that array ...
0
votes
1answer
12 views

iOS: Seeding an app with items from a plist

I'm trying to populate or seed my app with certain items, using the next method, which is called in the didFinishLaunchingWithOptions method: -(void)seedItems { NSUserDefaults *ud = ...
1
vote
2answers
30 views

Very Interesting Variances with Time on Different Devices

This timmer works great on all my devices (5, Ipad and two 4S) but it doesn't seem to work on the two 3GS I have. For some reason the time runs really slow on the 3s. Heres a video explaining the ...
2
votes
2answers
58 views

Loading images for animation in UIImageView - iOS

I have around 300 images to be loaded for animation the images are named loading001.png, loading002.png, loading003.png, loading004.png………loading300.png I am doing it in the following way. .h file ...
-1
votes
1answer
31 views

Pick UIImage using UImageNamed and add them on NSArray

I've created a custom uiimage picker. I have multiples UIImage with this name : "Soiree-blabla.png" added manually to my xCode project What i want is to get all these images and add them on an ...
2
votes
3answers
48 views

How to concatenate all values of array in Xcode [duplicate]

I am new in iOS and i am not able to find solution of my question . So please tell me how can i concatenate all values of array in iOS
0
votes
1answer
32 views

Insert NSArray with diffrent types into sqlite database?

Hey i got a Question regarding inserting data into an sqlite database. I want to create general class for inserting data into a sqlite database. so i wrote a method like this: ...
-2
votes
1answer
65 views

Objective-C: Code Clarification [duplicate]

I'm having trouble understanding the code below: for (SKProduct * skProduct in skProducts){ IAPProduct * product = _products[skProduct.productIdentifier]; .h @property (nonatomic, strong) ...
0
votes
4answers
37 views

when i remove the values from array after adding in to the dictionary.The array values are removed from the dictionary in iOS?

Iam adding the array in to the dictionary then remove the all objects from array.When i print the dictionary it is also shows empty.Means the array data present in dictionary also removing. if ...
0
votes
2answers
90 views

What does this Objective-C dictionary code do?

.h @property (nonatomic, strong) NSMutableDictionary * products; //not synthesized in .m .m - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response ...
0
votes
2answers
88 views

Compare the contents of two arrays and finding the differences

I have two arrays, one is an array from a fetch request of core-data (array1), the other is from data that is being pulled from the web(array2). What I want to do is compare array1 to array2 and any ...
0
votes
1answer
49 views

Check if String is a Partial Match to Another String

I have a search bar on my map view that allows the user to search for the name (annotation title) or address (annotation subtitle). I have it working just fine if the user types in the entire title or ...
-1
votes
1answer
53 views

sorting an NSMutableArray of objects (strings & objects) [closed]

I'm having trouble sorting one of my NSMutableArrays. The array is set up as follows classesArray = [[NSMutableArray alloc] initWithObjects:nil]; NSMutableArray *tmpClassMembers = [[[NSMutableArray ...
0
votes
2answers
46 views

Compare two items in one NSArray

I have an array containing twenty items. I want to search through the array, comparing one item to the next one in the array, and then print the larger item. I have already sorted the array. I just ...
0
votes
1answer
38 views

SortedArrayUsingComparator not working accurately

I am trying to sort my array, but it seems to not work reliably. Here is the code for sorting. Basically the Request priorityID has values from 1-5 For example: sortedArray = ...
-3
votes
0answers
54 views

Reverse an NSMutableArray data [closed]

I can achieve reverse an NSMutableArray in two ways, they are - insertObject:atIndex:0 - [[self.array reverseObjectEnumerator] allObjects] from the above which one would perform better ...
0
votes
1answer
53 views

Error populating TableView with array: index 1 beyond bounds [0 .. 0]

I am trying to populate a UITableview with an NSarray. I'm building an app in which users can search for companies, and the search results are returned by the database in an array. This makes that I ...
0
votes
2answers
57 views

NSArray name from string

I need to make some values of NSArray. Every array must have a unique name. I'm generating ID by this code CFUUIDRef newUniqueId = CFUUIDCreate(kCFAllocatorDefault); NSString * uuidString = ...
0
votes
1answer
24 views

iOS reordering a UITableView

I have a UITableView that reads data from a sql db. When i reorder the data it only changes the top and bottom ones Dragging 1 from top to bottom When i let it go at 5 it only switches the top ...
1
vote
3answers
59 views

Difference between literals and class methods for NSMutableArray and NSMutableDictionary [duplicate]

When I started with OSX/iOS I used NSMutableArray * a1 = [NSMutableArray arrayWithCapacity:123] ; NSMutableDictionary * d1 = [NSMutableDictionary dictionaryWithCapacity:123] ; Then ...
-2
votes
2answers
41 views

Function Does Not Recognize Array Values [closed]

I tried to create an array via parsing a .csv file Then I run it through the this function. //Array NSString *filePath = [[NSBundle mainBundle] pathForResource:@"499CSV" ofType:@"csv"]; NSString ...
0
votes
1answer
21 views

NSArray of string numbers representing NSDates grab only number closest to current date but ignoring todays date

I have an Array of strings called seperatedDates representing dates i.e. 13, 27, 29 I remove the comma separation using the below. Which then adds the items to the arrays indexes. i.e. 13 would be at ...
0
votes
2answers
40 views

How can I add elements to an NSDictionary in the following format?

I have an NSArray of names and ages. Now I am trying to create a new NSDictionary with item 0 holding the first name and first age and item 1 holding the second name and second age from the ...
-3
votes
2answers
71 views

Using NScanner to parse CSV File to Dictionary Array [duplicate]

I've created an iPhone app that has a dictionary array of locations (lat,long,point). I created the array by manually entering each value. myLocationArray = @[ @{ ...
-3
votes
3answers
83 views

Create a Custom Formatted Dictionary Array from CSV File of Data

I've created an iPhone app that has a dictionary array of locations (lat,long,point). I created the array by manually entering each value. myLocationArray = @[ @{ ...
0
votes
2answers
56 views

componentsSeparatedByString:@“” (every character in array) [duplicate]

I want to add every Character in an NSArray ("123" -> To NSArray with "1","2","3"). I tested componentsSeparatedByString:@"" and componentsSeparatedByString:nil, but it doesn't work, can anyone ...
0
votes
3answers
40 views

How to properly take out a string from a string?

I have a NSString that looks something like this "ALAssetsGroup - Name:Hej - ProgCam, Type:Album, Assets count:0" I want to "extract" the name "Hej". I tried to do it like this: NSString *sStr = ...
1
vote
2answers
32 views

Show only some of the objects in an Array

I want to only show some of the items in an array, but can't figure out how to do it. This is the code I have that currently shows all objects in the array: @property (strong, nonatomic) NSArray ...
-4
votes
0answers
53 views

How to convert NSArray to NSDictionary? [closed]

I want to convert data like this {"id":"997","name":"","age":"0","phone":"","image"} {"id":"1025","name":"","age":"0","phone":"","image"} saved in NSArray to Nsdictionary to be name ... age .... I ...
0
votes
4answers
45 views

Check duplicate property values of objects in NSArray - iOS

I have an NSArray containing objects. Each object has a size property. How can I check if the NSArray has two objects with the same size property? Can I do something like: int i = 0; for (id item1 ...

1 2 3 4 5 53