I want to declare a NSInteger variable in my ViewController, but I get an error.
In my ViewController.h I have
@interface MainViewController : UIViewController{
NSInteger currentSection;
//Other stuff
}
@property (assign,nonatomic) NSUInteger currentSection;
@end
and in my ViewController.m I have:
@implementation MainViewController
//Other stuff
@synthesize currentSection;
But I get this error:
Type of property 'currentSection' ('NSUinteger' (aka 'unsigned int')) does not match type of ivar 'currentSection' ('int')
Why do I get this error with one simple instruction?
I'm using Xcode 4.4 with ARC.