0

我正在用 Objective-C iOS6 ARC 编写应用程序。这是一段代码:

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.

问题是什么?此致

4

1 回答 1

0

已找到解决方案。在某些时候,我一直在发送一个指针值而不是整数

于 2013-01-23T01:36:58.650 回答