Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 09-05-2008, 01:09 PM   #1 (permalink)
Registered Member
 
roberthuttinger's Avatar
 
Join Date: Sep 2008
Posts: 96
roberthuttinger is on a distinguished road
Default timer not updating?

Ive got a timer that im using to simulate a coin flip (practice makes perfect right?) well It will only gofrom 10 to 9 immediately and not continue. I cannot figure out what is wrong, is anything wrong?

HTML Code:
-(IBAction)flipCoin {
	time = 10.0;
	timer = [NSTimer scheduledTimerWithTimeInterval:0.5 target:self selector:@selector(updateCoin) userInfo:nil repeats:false];
}
-(void)updateCoin{
	time = time - 1;
	if(time == 0){
		[timer invalidate];
		[self showCoin];
	} else {
		[self updateCoinAnim];
	}
}
-(void)updateCoinAnim{
	coinWindow.image = [UIImage imageNamed:[NSString stringWithFormat:@"coin_anim_step_%i.png", time]];
	// for testing
	mainText.text = [NSString stringWithFormat:@"%i", time];
}
-(void)showCoin{
	coin = 1 + arc4random() %2;
	coinWindow.image = [UIImage imageNamed:[NSString stringWithFormat:@"coin_%i.png", coin]];
	
}

Last edited by roberthuttinger; 09-05-2008 at 01:10 PM. Reason: wrong code
roberthuttinger is offline   Reply With Quote
Old 09-05-2008, 01:23 PM   #2 (permalink)
Registered Member
 
roberthuttinger's Avatar
 
Join Date: Sep 2008
Posts: 96
roberthuttinger is on a distinguished road
Default

repeat:YES is kinda key there, I answered it myself, sorry guys! I left the post up in case someone else has a similar issue.

rob
roberthuttinger is offline   Reply With Quote
Reply

Bookmarks

Tags
animate, flip, image, timer

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 329
13 members and 316 guests
akacaj, alexP, ClerurcifeDer, Duncan C, givensur, GraffitiCircus, guusleijsten, JmayLive, NetGuru, Paul Slocum, Punkjumper, Sloshmonster, yys
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,649
Threads: 94,114
Posts: 402,883
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Anwerbl
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 09:46 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0