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];
}