У меня есть следующий код:
In .h:
interface .... {
int CatID;
...
}
@property (readwrite) int CatID;
.m:
// Already includes the header file (.h)
implementation ... {
@synthesize CatID;
....
- (void)setCatIDa:(int)cid {
self.CatID = 20;
NSLog(@"cat id: %d", CatID); // this returns 20
}
- (IBAction)someTest:(id)sender {
NSLog(@"cat id: %d", CatID); // returns 0
}
}
Как происходит его возвращение 0?
Кроме того, представления NIB меняются между набором иполучить