返回整数值



我正在用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.

概率是多少?此致敬意

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

相关内容

  • 没有找到相关文章

最新更新