I'm working on a class project (iPhone application), and I'm trying to troubleshoot a crash.
I'm taking a randomly generated number (Integer) and re-formatting it as a NSString to send through my outlet to an UILabel field. It works twice, then crashes the app. Thoughts?
int randomIntergerA = 1+ arc4random() %(100);
statusTextA.text = [NSString stringWithFormat
"%d",randomIntergerA];
I'm taking a randomly generated number (Integer) and re-formatting it as a NSString to send through my outlet to an UILabel field. It works twice, then crashes the app. Thoughts?
int randomIntergerA = 1+ arc4random() %(100);
statusTextA.text = [NSString stringWithFormat