A little bit more info on this.
In the .h file i have the following in the right place...
Code:
NSTimer *timer;
@property (nonatomic,retain) NSTimer *timer;
In the .m file i have the following in the right place...
Code:
@synthesize timer;
- (void)accelerometer:
timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(moveProgress) userInfo:nil repeats:YES];
- (void)moveProgress:
[timer invalidate];
I've changed around the code a bit for some of the suggestions but they did not provide any sunshine. I've got it back to what it is posted in my posts now...non functioning! LOL.
Thanks again for helping with this...can't wait to get his resolved.