lllegal type 'NSInteger *' (aka
2016-11-18 本文已影响0人
王洛书
/** id */
@property (nonatomic, assign) NSInteger *Id;
变量前误加了*,去掉就好了
/** id */
@property (nonatomic, assign) NSInteger Id;
/** id */
@property (nonatomic, assign) NSInteger *Id;
/** id */
@property (nonatomic, assign) NSInteger Id;