Top "Nsinteger" questions

An NSInteger is a data type in Objective-C. It is used to describe an integer.

Convert NSInteger to NSIndexpath

Basically I am storing an index of an array in a NSInteger. I now need it as an NSIndexpath, I'm …

ios objective-c nsindexpath nsinteger
Int or NSInteger as object for method argument. Objective-C

I'm having some trouble passing a number as an argument for a method: - (void)meth2:(int)next_int; And …

iphone objective-c nsinteger
casting NSInteger into NSString

I'm trying to make one string out of several different parts. This below is what i have right now. I …

objective-c ios nsstring string-formatting nsinteger
What is the maximum value of NSInteger?

I need to store the maximum value of an NSInteger into an NSInteger? What is the correct syntax to do …

cocoa nsinteger
Check if Integer is Positive or Negative - Objective C

How can I tell in objective-c coding if an integer is positive or negative. I'm doing this so that I …

objective-c xcode nsinteger
How to compare two NSInteger?

How do we compare two NSInteger numbers ? I have two NSIntegers and comparing them the regular way wasnt working. if (…

objective-c ios nsinteger
Convert NSInteger to NSUInteger?

I am trying to convert a NSInteger to a NSUInteger and I googled it and found no real answer. How …

objective-c nsinteger nsuinteger
Difference between int, NSInteger and NSUInteger

What is the main difference between int, NSInteger and NSUInteger in Objective-C? Which one is better to use in an …

iphone objective-c int nsinteger nsuinteger
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 + …

iphone objective-c nsarray nsnumber nsinteger
What is the difference between int and NSInteger?

Possible Duplicates: When to use NSInteger vs int? Why is there is an NSInteger? Can we use int and NSInteger …

objective-c cocoa types int nsinteger