Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
4answers
6k views

When to use NSInteger vs int?

When should I be using NSInteger vs int when developing for iOS? I see in the apple sample code they use NSInteger (or NSUInteger) when passing a value as an argument to a function or returning a ...
23
votes
3answers
26k views

What's the difference between NSNumber and NSInteger?

What's the difference between NSNumber and NSInteger? Are there more primitives like these that I should know about/use? Is there one for floats?
13
votes
3answers
23k views

How to convert An NSInteger to an int?

For example when passing a value message to an NSInteger instance like so [a value] it causes an EXC_BAD_ACCESS. So how to convert an NSInteger to int? If it's relevant only small numbers < 32 ...
13
votes
4answers
12k views

Why don't I declare NSInteger with a *

I'm trying my hand at the iPhone course from Stanford on iTunes U and I'm a bit confused about pointers. In the first assignment, I tried doing something like this NSString *processName = ...
9
votes
3answers
2k views

Why doesn't cocoa use the same enum declaration style everywhere?

I was wondering what is the rationale behind different styles of enum declaration on cocoa? Like this: enum { constants.. }; typedef NSUInteger sometype; Is the reason to use typedef to get ...
8
votes
2answers
222 views

enum values: NSInteger or int?

tl;dr Version How are the data types of an enum's constants guaranteed to be NSUInteger instead of unsigned int when declaring an enum thusly: enum { NSNullCellType = 0, NSTextCellType = 1, ...
7
votes
5answers
2k views

Is NSNumber overkill for an instance-level counter?

I'm new to Objective-C and Cocoa. I've read that NSInteger and NSNumber are preferred when working with simple integers because they're the "platform-safe" versions of the primitive numeric types ...
5
votes
2answers
1k views

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 it? Thanks.
3
votes
3answers
249 views

NSIntegerMax vs NSUIntegerMax

NSUInteger index = [self.objects indexOfObject:obj]; if (index == NSNotFound) { // Success! Note: NSNotFound internally uses NSIntegerMax } if (index == NSUIntegerMax) { // Fails! } Why? ...
3
votes
5answers
386 views

iPhone - numberOfRowsInSection error with array count

I am getting the following error if the @"Comments" array is 0 and the other two are 1 or greater. *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSMutableArray ...
3
votes
5answers
735 views

Why can't I use an NSInteger in a switch statement?

Why doesn't this work: NSInteger sectionLocation = 0; NSInteger sectionTitles = 1; NSInteger sectionNotifications = 2; switch (section) { case sectionLocation: // break; case ...
3
votes
1answer
2k views

NSLog specifier for NSInteger?

A NSInteger is 32 bits on 32-bit platforms, and 64 bits on 64-bit platforms. Is there a NSLog specifier that always matches the size of NSInteger? Setup Xcode 3.2.5 llvm 1.6 compiler (this is ...
3
votes
3answers
278 views

Does NSUserDefault take a few seconds to register the values I pass it?

I am passing an integer value to the NSUserDefault object to store for use when my app loads up. I HAD it working perfectly until I tried to switch that integer value to a float. It caused a whole ...
3
votes
2answers
7k views

How to convert NSNumber to NSInteger

How to convert an NSNumber to NSInteger ?
2
votes
1answer
22 views

Getting access to an outputted 'NSInteger' in rest of my code

I am trying to do something I thought would be relatively simple and get the current day of the week, then make some checks against that day when buttons are tapped. to get the day of the week I have ...
2
votes
2answers
1k views

What is the difference between int and NSInteger? [closed]

Possible Duplicates: When to use NSInteger vs int? Why is there is an NSInteger? Can we use int and NSInteger interchangably? Is there any specific situation to use NSInteger only, ...
2
votes
1answer
806 views

Objective-C can't assign a NSInteger to an NSInteger variable?

This is going to seem like a really silly question but I can't figure out why I'm getting an error. I have an instance variable declared as: NSInteger *scopeSelected; I'm using this variable to ...
2
votes
3answers
2k views

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 can write an "if" statement stating that if this integer is positive then do this, and if its ...
1
vote
3answers
74 views

adding NSInteger object to NSMutableArray

I have an NSMutableArray @interface DetailViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> { NSMutableArray *reponses; } @property (nonatomic, retain) ...
1
vote
1answer
63 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
3answers
91 views

NSInteger always zero

I have a NSInteger which always returns zero :( I have it declared like: NSInteger level; @property(nonatomic, assign) NSInteger level; The synthetize: @synthesize fileName, filePath, ...
1
vote
3answers
224 views

Difference between int, NSInt and NSUInteger

What is the main difference between int, NSInteger and NSUInteger in Objective-C? Which is better to use in an application and why?
1
vote
2answers
78 views

NSInteger and int giving exceptions

I'm trying to get data from a database using FMDB but having tried with futility for a while, I can't figure out why this is throwing an EXC_BAD_ACCESS exception. The parameter is passed in from an ...
1
vote
3answers
988 views

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 struggling to see and find a way to convert my NSInteger to NSIndexpath so I can reuse it. Thanks dan ...
1
vote
1answer
621 views

How do I get specific values from a NSIndexPath

I have a NSArray with NSIndexPaths inside of it NSIndexPath *indexPath = [self.tableView indexPathsForSelectedRows]; NSArray *array = indexPath; for (int i = 0; i < [array count]; i++) { ...
1
vote
1answer
222 views

Are there any issues with int32_t to NSInteger casting?

I am creating a bitmask for the iOS using the data type int32_t. This is then set to a variable that accepts an NSInteger. This throws no compile time errors as expected, but I was wondering - is ...
1
vote
2answers
1k views

Compare NSNumber with NSInteger

I spent some time today chasing down two bugs, and ended up fixing both of them using the same solution. Now that I have the solution, I was hoping to get some clarity behind it. I'm comparing an ...
1
vote
2answers
418 views

NSInteger counts times 4?

I don't understand why this NSInteger counter increments to exactly 4 times the true value of database rows. Maybe this is stupid but I really just don't get it... Thanks so far :) NSInteger *i; i ...
1
vote
2answers
257 views

Creating NSInteger category

When trying to create a category for NSInteger, the compiler complains that it "Cannot find interface declaration for 'NSInteger'". Is it not possible to create an NSInteger category? A simple test ...
1
vote
2answers
183 views

using NSInteger in a loop

Do a NSInteger occupies memory? Should we use it in a FOR loop?
1
vote
2answers
182 views

Assemble date object from integers?

Given three integers, representing a day, month and year, what code would assemble those integers into a date object?
1
vote
1answer
431 views

C/Objective-C read and get last digit of integer?

How can i get the last digit of an integer (or NSInteger) outputted to integer? example: int time = CFAbsoluteGetCurrent(); int lastDigit;
1
vote
1answer
592 views

How can I reverse the byte order of an NSInteger or NSUInteger in objective-c

This is a somewhat of a follow up to this posting (http://stackoverflow.com/questions/2718712/how-to-convert-byte-value-into-int-in-objective-c) but with a different question so I felt I should ask in ...
1
vote
2answers
245 views

how to convert the value of nsarray to integer value

I working on grouped table view based work in that in that i want to convert the value of NSarray into integer for specifing to section value of numberOfRowsInSection but it throws expection on ...
1
vote
3answers
7k views

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 to call that method i need this: int next_int = 1; [self ...
1
vote
1answer
752 views

NSInteger versus int

What would be the reason to use an NSInteger vs an int in iPhone programming? Thanks.
1
vote
3answers
1k views

valueForKey only returns memory address and not actually value

NSDictionary *topic = [spaces objectAtIndex:i]; NSInteger topicid = [topic valueForKey:@"TOPICID"]; when I run this and print out topic I get the following: Printing description of topic: ...
0
votes
1answer
29 views

NSInteger value changing when loading view

I have an NSInteger in my app delegate called healthInt. In the app delegate i have healthInt set to 100. And when the application loads the first view healthInt is still equal to 100. But when it ...
0
votes
1answer
41 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, ...
0
votes
1answer
79 views

How to convert NSIndexPath to NSInteger?

I have searched and found a previous answer for this question here. The problem is that the answer marked as a solution does not work. Inside my tableView:didSelectRowAtIndexPath: method, I have ...
0
votes
1answer
255 views

Implicit Conversion from NSInteger to NSString not allowed in ARC.. what workaround should be used to deal with Integers

This is my code in my viewcontroller.m file - (void)viewDidLoad{ [super viewDidLoad]; [self.abilitygeneration setText:((TestAbility *)[self.testabilities objectAtIndex:0]).abilitygeneration]; } It ...
0
votes
1answer
160 views

Converting int to NSInteger [closed]

Possible Duplicate: How to convert An NSInteger to an int? I am new to iOS programming, how do I convert int to NSInteger. I have found references on how to convert NSInteger to NSNumber ...
0
votes
2answers
45 views

Iphone Application terminate due to uncaught exception 'NSInvalidArgumentException'

I have an application in which i use this code for save data in local prefences. -(IBAction)radio_button:(id)sender{ switch ( ((UIButton*)sender).tag ){ NSUserDefaults *defaults = ...
0
votes
0answers
46 views

NSInteger argument invalid value

I have the following class: @interface MyObj : NSObject { NSInteger _x; NSInteger _y; .... } @property(nonatomic, readonly) NSInteger x; @property(nonatomic, readonly) ...
0
votes
3answers
82 views

Why is my code working with me initializing NSInteger? [closed]

Possible Duplicate: (Objective-)C ints always initialized to 0? I have an interface @interface MyInterface { NSInteger _count; } @end Then in my implementation I am just using is as ...
0
votes
2answers
76 views

Problem with isEqualToString: method and NSInteger

This is my code: for (int i=0; i<countingArray.count; i++) { NSDictionary *element=[countingArray objectAtIndex:i]; NSString *source=[element objectForKey:@"id"]; NSInteger count= ...
0
votes
2answers
268 views

Store NSInteger in Core Data

Is there any way I can skip dealing with NSNumber and work directly with NSInteger?
0
votes
2answers
506 views

Convert NSInteger to NSUInteger?

I am trying to convert a NSInteger to a NSUInteger and I googled it and found no real answer. How would I do this? Thanks!
0
votes
1answer
122 views

Return value through parameter NSInteger

I need to read 3 values from a database and return them in a method. I'm having trouble to understand how to return values using NSInteger types. This is the code: NSString* ...
0
votes
4answers
163 views

Want to pass integer value to the another view

I am creating an iphone app in which i have some vale in integer in my oneviewcontroller and i want that integer value in my secondviewcontroller controller. value will be random. I stored this ...

1 2