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
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 = ...
1
vote
2answers
79 views

NSPredicate of multidimensional NSArray

Given is an NSArray with objects, each of which has an NSArray with floats, stored as NSNumbers. I am trying to create an NSPredicate to filter my main array based on the float values. So, for ...
0
votes
3answers
207 views

Implicit conversion of 'int' to 'NSArray*' is disallowed with ARC

I am trying to fill my array with integer. However, there is something strange to me that it is not easy as I Thought. Here is the description of what happens. Last line of the code gives me ...
0
votes
2answers
54 views

Convert array of NSStrings to array of formatted NSNumbers

I have an array of strings called valuesArray containing values like this: 2913451.0938 I am trying to format those numbers so that I can display them like this: 2,913,451.09 Using the following ...
0
votes
2answers
112 views

Pick closest NSNumber from array

I have an array with a bunch of NSNumbers. From an UISlider I get a certain value when the user stops dragging it. I would like to get the closes number from the array. So for instance, if the user ...
1
vote
2answers
226 views

Increment NSNumber in NSArray

I've seen this, but there needs to be an easier way than that. If I have an array of NSNumbers and I want to increment one of them, I have to do this? [myMutableArray replaceObjectAtIndex:index ...
2
votes
1answer
149 views

How do you add [NSArray arrayWithObjects NSNumber numberWithInt:] with text string?

How do I add text in NSNumber? I can't find solution to fix this problem. How do you this? NSString *myInt = interestRate.text; NSArray *vals = [NSArray arrayWithObjects: [NSNumber ...
0
votes
0answers
42 views

ARC leak nsarray

I am working whit arrays in ARC and I have trouble dealing whit leaks. I have NSMutableArray servers allocated as global variable. I make temporary array: NSMutableArray *currentsqlData = ...
0
votes
1answer
90 views

frequency of NSNumbers in NSArray

Hi I'm working on an app which creates an NSArray of NSNumbers based on a set of upper and lower bounds set by the user. There will be a min of 5000 randomly created numbers within these bounds... ...
1
vote
1answer
824 views

Get Integer value from NSNumber in NSArray

So I have a NSArray with NSNumber objects that have int values arrayOfValues = [[[NSArray alloc] initWithObjects: [NSNumber numberWithInt:1], [NSNumber numberWithInt:3], [NSNumber numberWithInt:5], ...
-2
votes
2answers
95 views

Colours within a NSArray arrayWithObjects

I have a simple leader boards table for an iphone game that allows me to view the previous high scores however the background is black and therefore it is not visible. I am using the code: ...
0
votes
2answers
119 views

What is the most efficient way to generate a sequence of NSNumbers?

It's a fairly simple builtin in python for example: x = range(0,100) How can I accomplish the same feat using objective-c methods? Surely there is something better than a NSMutableArray and a ...
0
votes
6answers
892 views

How get the total sum of NSNumber's from a NSArray?

I have a large NSArray containing NSNumbers like 3, 4, 20, 10, 1, 100, etc... How do I get the total sum of all these NSNumbers (3 + 4 + 20 + 10 + 1 + 100 + etc...) as one total NSInteger? Thank ...
0
votes
2answers
175 views

NSArray or NSMutableArray for NSNumber Listing

Okay, so I want to do something like this: int array[] = {1, 2, 3, 4, 5}; How would I go about that if I want to use NSArray and NSNumbers instead of ints? **Note: I do not want something like ...
0
votes
1answer
199 views

Accessing NSNumber objects in NSArray

I have this: NSArray *tags = [NSArray arrayWithObjects: [NSNumber numberWithInteger:0], [NSNumber numberWithInteger:1], ...
0
votes
2answers
438 views

NSMutableArray to NSNumber

I have an array that has: 12, "+", 56, "+", "", "(", 56, "+", 65, ")" now let us say i want to add [NSMutableArray objectAtIndex: 1] + [NSMutableArray ...
0
votes
1answer
240 views

What is the correct way for quering a NSNumber in a NSArray within CoreData?

I have a Entity with a column of type ID named "responsibleUsers". In this column I store an Array containing NSNumbers. I want to fetch all objects of this entity, that match my current User. ...
0
votes
2answers
287 views

How can I read a NSNumber from an array?

I am trying to put a NSNumber to an array with this: NSNumber *n = [NSNumber numberWithInt:1]; [[array objectAtIndex:0] setValue:n forKey:@"1"]; Then I have an action, which I want it to print the ...
0
votes
3answers
1k views

Initializing NSArray of numbers

I have an non-mutable array that only needs to have numbers. How would I have to initialize this? I have it like below right now but I'm thinking there has to be a better way. Can we do it like in ...
0
votes
3answers
351 views

how to operate on NSNumber in NSNArray created by NSString

i've got some method. ....{ NSString *mean = @"1:1:1:1:1:1:1:1:1"; tab = [self moveSourceArrayToDestinationArray:mean]; ....} ...
0
votes
2answers
113 views

Creating NSNumber from another NSNumber behavior?

I'm trying to insert an NSNumber as a float value, into an NSArray, containing the floatValue from another NSNumber. I'm able to create the array fine, but when I access the object, it appears to ...
0
votes
2answers
74 views

what is easiest way of working arrays in objective-c?

I want to create function to return a 1d array with 2 elements in it something like below : (NSArray *) myFunction { NSArray * myArr = [[NSArray alloc]initwithobjects:[NSNumbers ...
0
votes
4answers
655 views

Objective-C: Smooth NSArray of NSNumber objects

I have an NSArray which contains a large number of NSNumber objects (thousands). I use these numbers to build a nice line graph. The problem is, the graph uses every value, which makes the graph ...
0
votes
4answers
316 views

Convert NSNumbers into NSStrings

In the code below, I have a dictionary of NSNumbers that are turned into an Array. It is then randomly sorted and the first four rows need to be displayed in the appropriate labels. NSLog does show ...
0
votes
1answer
202 views

iPhone: How to convert normal NSArray into an NSArray containing NSNumber values?

In my iPhone app, I am using an array which contains the values like shown below: A:{ 1000, 2000, -1000, 4000 } Now I want to convert this to the array shown below. NSArray *A = ...
0
votes
4answers
685 views

Problem Adding to NSMutableArray in Loop

I'm not sure what the problem is with this loop exactly, but I keep getting SIGABRT whenever I run it. According to the log the problem is when I try to add the NSNumber to the NSMutable array near ...
1
vote
2answers
110 views

NSArry of floats issue

Im trying to create an NSArray of floats. However, once the value is added to the arrays it is alway 0.0000000. What am i doing wrong? NSLog(@"percent: %f" , percent); prints the correct value ...
1
vote
4answers
2k views

How do I properly create static NSArrays full of NSNumbers in Objective-C (Cocoa)?

Why is it that in the following code, I can not just simply make a static array of NSNumbers? I would just use C arrays and ints, but those cannot be copied and as you can see in init(), I have to ...
20
votes
3answers
38k views

How to convert NSNumber to NSString

So I have an NSArray "myArray" with NSNumbers and NSStrings. I need them in another UIView so i go like this: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
4
votes
3answers
2k views

Generating permutations of NSArray elements

Let's say I have an NSArray of NSNumbers like this: 1, 2, 3 Then the set of all possible permutations would look something like this: 1, 2, 3 1, 3, 2 2, 1, 3 2, 3, 1 3, 1, 2 3, 2, 1 What's a ...
0
votes
2answers
3k views

containsObject - why doesen't this work?

I have an array that I am trying to check wether or not an indexPath(.row) exists in. I use this code: if ([array containsObject:[NSNumber numberWithInt:indexPath.row]]){ NSLog(@"Yep, it exists ...