0

我正在Objective-C iOS6 ARC中編寫ann應用程序。 這是一個代碼片段:返回整數值

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

已找到解決方案。在某些時候,我一直在發送一個指針值而不是整數