I've got some simple code in Objective-C wich consist of a button and a label. When you click the button once, the labels shows: "u hit me", if you click it twice, the message will be: "i did it again". But, if u hit the button 5x or more, the message should be: "STOP THAT";
I used simple ifs and a counter that is increased using the operator ++. The problem is: My counter increases in steps of 4, and not in steps of one.
Here's the code
@implementation hitMe
NSString *myString = @"";
int *counter = 0;
- (IBAction)htM:(id)sender {
if ([myString isEqualToString:@""]){
//first hit
myString = @"u hit me";
} else {
// second and next hits...
myString = @"u did it again!";
counter++;
}
// if I use "counter > 5" it doesn't work,
// I have to use 21 if I want the button hit 5 times before
// I get the "STOP THAT" message
if (counter > 21) {
myString = @"STOP THAT ";
}
[labelOne setStringValue:myString];
// I used this only to check the count value
[labelTwo setIntValue:counter];
}
@end
++operator is a C-ism, not an Objective-C-ism, I'm guessing it's not anything from the C/C++ family tree. – Jonathan Grynspan Apr 2 '11 at 6:57uor2instead ofyouortoshows disrespect.) (2) Simple punctuation: end sentences with a single.or?, and one space after the punctuation. (3) CapitalizeI, and first word of every sentence. No one expects perfection, but these idioms are simple and show respect. :) – sarnold May 25 '11 at 0:20Uis an acceptable replacement for the wordyou. It's not. – Cody Gray May 25 '11 at 6:05