我正在Objective-C iOS6 ARC中编写ann app。 这是一段代码:
header file:
@interface Chapter : NSObject
-(void) addPageCount:(int) pCount;
-(int)getPageCount;
@end
//implementation
#import "Chapter.h"
@interface Chapter()
{
int pageCount;
}
@end
-(void)addPageCount:(int) pCount
{
pageCount = pCount;
}
//testing
NSLog(@"%d", [chapter getPageCount]);
Returns -1073750816 once I pass 100.
问题是什么? 最好的问候
答案 0 :(得分:0)
已找到解决方案。在某些时候,我一直在发送指针值而不是整数