我想NSInteger
在 ViewController 中声明一个变量,但出现错误。
在我的 ViewController.h 我有
@interface MainViewController : UIViewController{
NSInteger currentSection;
//Other stuff
}
@property (assign,nonatomic) NSUInteger currentSection;
@end
在我的 ViewController.m 我有:
@implementation MainViewController
//Other stuff
@synthesize currentSection;
但我得到这个错误:
属性类型“currentSection”(“NSUinteger”(又名“unsigned int”))与 ivar 类型“currentSection”(“int”)不匹配
为什么我用一个简单的指令就会得到这个错误?
我正在使用带有 ARC 的 Xcode 4.4。