Re: Loops in Objective C?
Re: Loops in Objective C?
- Subject: Re: Loops in Objective C?
- From: Thomas Davie <email@hidden>
- Date: Mon, 26 May 2008 21:26:00 +0200
I won't bother showing you the other files in the project I know
they're all in order. So I want the object receiving sliderRotation
to rotate, in the above code I want it to rotate forever. If I
remove the loop, each time I press the button it rotates -.5
degrees. But with the loop in there, I get the horrible spinning
beachball of eternity when I press the button and the object that is
supposed to rotate never moves. Do I have to use some special
Objective C loop?
No, no such thing, just your loop never modifies the value of z, so
your program's execution never proceeds outside the loop. The GUI
can't redraw if all your program is doing is looping infinitely.
Bob
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden