Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to zoom in & zoom out the font size of UILabel, I have used UIPinchGestureRecognizer But while zoom or zoom out that are not working perfect- eg, First Zoom, then need to zoom again, it zoom initially , not zoom from the current size , The same problem in both Zoom In & Zoom Out, the following are the code that i have implemented

-(void)handlePinchRecognizerForWordList:(UIPinchGestureRecognizer *)recognizer
{
    tblViewCellHeight = (int)recognizer.scale + 20;
    tblViewWordsFontSize = (int)recognizer.scale + 10;

    if(recognizer.state == UIGestureRecognizerStateBegan)
        tblViewWordListViewer.scrollEnabled = NO;

    if(recognizer.state == UIGestureRecognizerStateEnded){
        tblViewWordListViewer.scrollEnabled = YES;
        [tblViewWordListViewer reloadData];
}
share|improve this question
You are omitting the current scaling of your font in your calculation. – Till Aug 13 '12 at 23:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.