I'm trying to implement a gauge animation using (+ and - buttons) on iphone, but i have no idea where to start? Any help is really welcome. See the image below (this is what I'm trying to do). Thanks for your help.

enter image description here

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Here is some open source code (with an example) that implements the gauge view. You of course would still need to do the buttons yourself, and possible add a different visual style.

http://www.cocoacontrols.com/platforms/ios/controls/meterview

link|improve this answer
Thanks for the link, the code does not do any thing! When i run it i got a simple splitted view with two altimeters! – funnyCoder Jun 6 '11 at 17:03
The code demonstrates how to create those two views. You would have to adjust the .value object of the MeterView object as the user presses the button... – Daniel Amitay Jun 6 '11 at 19:42
Thanks Daniel, is there any tutorial on how to build this? Thanks aagain. – funnyCoder Jun 6 '11 at 20:26
feedback

You need to rotate the needle based on the angle... Here is the logic You can refer my answer here... Rotating a UIImageView around a point over 10 seconds?

    fireInterval = 10;
//Adjust starting and ending angle
    mStartingAngle = 45; 
    mEndingAngle = 180;
//Implementation

-(void) startTimer
{
 mPreviousTime = [NSDate timeIntervalSinceReferenceDate];
}

In the loop

-(void) updateFunction
{
    NSTimeInterval timeNow = [NSDate timeIntervalSinceReferenceDate];

            //NewValue = (((OldValue - OldMin) * (NewMax - NewMin)) / (OldMax - OldMin)) + NewMin
            //Mapping values between mStartAngle and mEndAngle
            mCurrentAngle = (((timeNow - mPreviousTime) * (mEndingAngle - mStartingAngle)) / (previousTime+fireInterval - mPreviousTime)) + mStartingAngle;

            if( mPreviousTime + fireInterval <= timeNow )
            {
                NSLog(@"10 seconds completed");
                mPreviousTime = timeNow;
            }
}

And rotate the needle based on mCurrentAngle....

link|improve this answer
Thanks for the reply, but the other answer is more appropriate in my case. – funnyCoder Jun 8 '11 at 21:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.