For some reason, when I try to increment one of my integers, it increments by four instead of one! The only thing I can think of is something wrong in the .h file. The integer is declared like this:
@property (nonatomic, assign) int *number;
and in the code I increment it by doing self.number++;
. I already checked and the method only runs once before it shows on the screen, and when I NLog
ged directly around it, it shows it incrementing by 4. To make matters worse, I tried changing it to NSInteger
for hahas and it incremented by 8!