on Mac OS X, NSNumber is a subclass of NSValue that offers a value as any C scalar (numeric) type
1
vote
2answers
590 views
Incrementing NSNumber
So, after I load the animations sprite frames into the cache in the game I'm making, I count how many frames each animation has. I do this because in the game config there's a value for the duration ...
4
votes
1answer
764 views
How to convert typedef enum to NSNumber?
Is each value of a typedef enum treated as an int?
E.g., given the following typedef enum:
// UIView.h
typedef enum {
UIViewAnimationCurveEaseInOut,
UIViewAnimationCurveEaseIn,
...
0
votes
1answer
97 views
error converting from plist/dictionary to NSNumber
I have a plist file that contains some default values,
My goal is to copy these value in an object at runtime,
Half the values are fine, the other are set to nonsense ^^
plist:
<dict>
...
...
2
votes
1answer
83 views
Alignment of numeric values in UILabel
I have a UITableView with custom UITableViewCells.
Each of these cells has six UILabels, in which numeric values are presented (please refer to the screenshot below).
Unfortunately the numeric ...
1
vote
2answers
630 views
NSManagedObject NSNumber properties convert booleans to integers?
I am running into a problem with a NSManagedObject subclass where the value is set to boolean value, but the primitive type always seems to be an integer.
Here's a scenario that describes the ...
0
votes
2answers
400 views
NSNumber doubleValue method returns null in objective C (IOS)
I am doing some iOS learning and I have an NSNumber which appears to be in order but when I ask for the doubleValue of it, I get null.
[stack addObject: [NSNumber numberWithDouble:operand]]
id ...
0
votes
1answer
125 views
Copying array of NSNumber
I'm quite new in Objective-c leaning so if my question is too stupid, please don't kill me ^^
There's my problem :
*Architecture : *
I have an objet : Guest with a property : listOfPricePaidByGuest
...
4
votes
1answer
627 views
Storing an enum property inside CoreData and making it convenient
One of my model object has an enum property. To store it in CoreData, I've used an NSNumber object.
Nevertheless, I'd like to access it as an enum type in a convenient way. What is the best practice ...
0
votes
2answers
484 views
Optimizing NSNumber numberWithInt:
I am profiling an iPhone app and I noticed a strange pattern. In a certain block of code that's called quite frequently...
[item setQuadrant:[NSNumber numberWithInt:a]];
[item ...
0
votes
0answers
44 views
NSNumber won't pass from one UIViewController to another
I am using Storyboards in Xcode 4.2 trying to pass an NSNumber from my GameViewController to my GoalsViewController and I am stuck.
Both highLevel and highLevelNumberForAward are NSNumbers with ...
0
votes
1answer
548 views
NSString to NSNumber with some decimal separator
The app I'm building now has a possibility to "download" text files and get the numbers from there. In the simulator everything works perfectly, but when I tested it on a device it just crashed. After ...
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
2answers
774 views
Xcode: getting badge value to add it to a label
I have an app that receives push notification.
I would like to add the badge with the right value near a button inside the application menu (do you remember the old Facebook app?).
I'm trying to get ...
3
votes
2answers
4k views
Is it possible to cast an NSInteger to NSNumber?
Quick question- is it possible to cast a NSInteger to a NSNumber object? I need to convert the tag of a UIImageView object to a NSNumber object because I need to pass it as an argument to a function.
0
votes
0answers
95 views
Problems with making map coordinates as variables
Ok i have 1 table view, 1 detail view and 1 map view,
goal is to make map have a specific coordinate depending on chosen cell.
Im trying to use same method i did for changing text in detail view, but ...
0
votes
2answers
241 views
Changing a boolean in an NSMutableArray
So I'm trying to change all the booleans in an NSMutableArray that I made which I followed from here.
i have:
@property (nonatomic, retain) NSMutableArray *isDinosaurTapped;
and synthesized:
...
0
votes
1answer
564 views
What's the real type? NSString or NSNumber
I have a NSDictionary that contains data converted from json data, like {"message_id":21}.
then I use NSNumber *message_id = [dictionary valueForKey:@"message_id"] to get the data.
but when I use ...
0
votes
3answers
58 views
Semantic Issue: Why does this warning appear here [closed]
I am using Core Data to generate a data model with some BOOL values, it is wrapping these up as NSNumbers. I want to use these in an if statement and it all seems to work fine except for this one ...
1
vote
2answers
820 views
Adding negative NSNumber value to a NSDictionary
As someone who has some programming experience it pains me to be asking this question. I just started playing around with objective-c a few days ago and I am trying to simply add NSNumber objects to ...
1
vote
1answer
485 views
iOS NSNumber intValue EXC_BAD_ACCESS
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
int num = 5;
[viewController functionA:[NSNumber numberWithInt:num-1]];
}
-(void) functionA: (NSNumber*) indexNumber{
...
1
vote
2answers
420 views
Trying to setObject of type Number in NSMutableDictionary and get strange warning
I'm Trying to setObject in NSMutableDictionary and get strange warning hear is the code
if ([errorCode intValue] != -1) {
NSLog(@"after getting data back");
NSString *userName = ...
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
553 views
Any solution for this core data related exc_bad_access while setting a NSNumber attribute?
So my CoreData model has one entity for the time being. It has several attributes, for testing purpose I set these attributes in the applicationdidfinishlaunching method. As soon as I set an NSNumber ...
0
votes
2answers
646 views
Formatting a NSNumber as percentage (%) with one decimal place using NSNumberFormatter
I am trying to format a NSNumber containing a value of 0.305 as "30.5%".
However, my following code does not work:
[numberFormatter setNumberStyle:NSNumberFormatterPercentStyle];
[numberFormatter ...
-1
votes
2answers
99 views
NSNumber out of scope
I am having trouble figuring out why my NSNumber is considered out of scope. Here is a simple version of my code:
viewController.m
NSNumber *mean;
[statistics calculateMean:mean];
NSLog(@"%@ is the ...
2
votes
3answers
939 views
NSNumber compare: returning different results
I'm trying to do some number comparisons and I'm getting some weird results.
NSNumber* number1 = [NSNumber numberWithFloat:1.004];
NSNumber* number2 = [NSNumber numberWithDouble:1.004];
([number1 ...
1
vote
2answers
963 views
NSNumber not casting correctly and being interpreted as NSCFString?
I'm iterating through an array of numbers that come through an API call:
[6000, 6001, 2000] for example
Here's my code:
for(NSNumber* arrayID in array){
...
0
votes
2answers
548 views
BOOL values not recognized on CoreData objects
I encountered a strange problem regarding CoreData and boolean values:
In my data model I have set an entity's property to BOOL. Later I set theEntity.theBooleanValue = [NSNumber numberWithBool:NO] ...
1
vote
1answer
226 views
NSNumber with commas
Maybe this is a silly answer but I'm pretty new on ios.. I have to show a number in an specific way in my app. Currently, I have numbers that I receive from a service in an NSString. But, e.g. if I ...
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];
....}
...
1
vote
0answers
328 views
NSNumber [numberWithInt:] EXC_BAD_ACCESS?
In my app I hold a int in a Singleton which I set from ClassA. Then in ClassB I grab that int from the Singleton like so:
int myInt = [Singleton sharedSingleton].scoreInt;
Then, since NSDictionary ...
1
vote
1answer
515 views
Method to put NSString and NSNumber into array
It's a calculator. I have a display where I can put digits and variables (x, y etc.). When I push Enter button it sends what is on display to array with all operand.
As on display can be NSString ...
0
votes
1answer
69 views
Pick random NSNumber from an Array? [duplicate]
Possible Duplicate:
Picking a Random Object in an NSArray
How do I pick a random NSNumber from an array containing 15 different prices (2.25, 5.99 etc)?
I want to do some calculations with ...
2
votes
1answer
300 views
Convert primitive Datatypes to NSNumber
We are trying to write a Wrapper from NSObject (using primitive datatypes) to a NSManagedObject (using NSNumber).
So we have to automatically convert the primitive type to a NSNumber.
We know the ...
3
votes
2answers
4k views
setProgress is no longer updating UIProgressView since iOS 5
I have a little trouble with a progress bar since iOS 5 came out. The code below was working fine before iOS 5 but with iOS 5 the progress bar is no longer displaying the new progress that is set ...
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
1answer
206 views
Can't find the solution, EXC_BAD_ACCESS
I know there are many other questions about the EXC_BAD_ACCESS error but this. I also know that an EXC_BAD_ACCESS error is shown if you try to get something that is no longer in memory, something that ...
6
votes
3answers
241 views
How is it possible to pass NSNumber to a method expecting a bool?
[[self.view.window subviews] makeObjectsPerformSelector:@selector(setUserInteractionEnabled:) withObject:[NSNumber numberWithBool:NO]];
I saw this code in another question's answer ( How to disable ...
0
votes
1answer
206 views
How do I format an NSInteger to represent minutes as zero padded digits like 00, 05…?
I'm building a UIPickerView to resemble a custom subclass of UIDatePicker, timepicker style.
Anyway, the minutes component should have numbers for every 5 minutes, starting with 00, 05, and then 10, ...
-1
votes
1answer
249 views
Objective-C, passing float as parameter
I found this problem, which is very weird.
- (void)imageMove:(float)xx y:(NSInteger)yy
{
NSLog(@"xx=%f,----yy=%d",xx,yy);
}
when I call this function:
[self imageMove:50 y:50];
the log ...
1
vote
3answers
428 views
NSNumber=0 in mutable array
If I store an NSNumber that is equal to 0 in an NSMutableArray will that be interpreted as nil and cause issues with the count method?
0
votes
1answer
145 views
pointer to integer
I have an array of integer and i'm trying to get an element from the array; xcode keeps showing this message: "initialization makes integer from pointer without a cast"
I know that this warning means ...
1
vote
1answer
57 views
data sharing between views in iphone
I want to share data ie some NSNumber from SetupMatchViewController to SetupTeamController
here is my code:
NSNumberFormatter * f = [[NSNumberFormatter alloc] init];
[f ...
-4
votes
2answers
289 views
How to print the sum of NSMutableArray
i cannot find the way to print the sum of all the numbers between 0 to 100 in a new line in the console. Here is my code:
NSMutableArray *intArray = [[NSMutableArray alloc] initWithCapacity:100];
...
0
votes
2answers
212 views
NSNumber being recognized as NSString in if-else
I have this bit of code thats got me crazy. Its a cellForRowAtIndexPath displaying 4 properties, of which 2 are NSStrings and 2 are NSNumber:
//THIS LOGS THE OBJECT BEFORE PROCESSING
NSLog(@"NO DATE ...
2
votes
2answers
182 views
Can I achieve multiple dispatch between int and NSNumber?
I'm writing some library code, and users of the library sometimes have different opinions about which methods should use int and when to use NSNumber. I would like some way to set up a method so that ...
0
votes
1answer
3k views
NSNumberFormatter numberFromString returns null
Here's my code
NSNumberFormatter *currencyStyle = [[NSNumberFormatter alloc] init];
[currencyStyle setFormatterBehavior:NSNumberFormatterBehavior10_4];
[currencyStyle ...
4
votes
1answer
503 views
iOS5 CoreData Entity showing wrong NSNumber value, works on iOS4
I have a CoreData entity with an NSNumber property (an Integer 16 in the model). I have the following code:
NSLog(@"raw changeAmount=%d", changeAmount);
NSNumber *changeNumber = [NSNumber ...
0
votes
2answers
364 views
Hexadecimal to NSNumber
I'm having issues with converting a hexadecimal number to an NSNumber. I tried a ton of things, but I can't seem to work it out.
With something like the following, how can I get an NSNumber?
Byte ...
0
votes
4answers
126 views
Going crazy with UITextField
I'm literally going crazy whit these six rows of code.
NB: nome and prezzo are 2 textFields
NSString *itemName = (NSString *) [rowVals objectForKey:@"name"];
NSString *itemPrice = (NSString *) ...