I want to display magnifying glass of iOS 7 when I tap gesture with UITextView
.
Please help me!!!!
I want to display magnifying glass of iOS 7 when I tap gesture with UITextView
.
Please help me!!!!
add this code in .m file where you have called subclass UITextfield
-(void)addGestureRecognizer:(UIGestureRecognizer *)gestureRecognizer
{
//Prevent zooming but not panning
if ([gestureRecognizer isKindOfClass:[UILongPressGestureRecognizer class]])
{
gestureRecognizer.enabled =YES;
}
[super addGestureRecognizer:gestureRecognizer];
return;
}
please check below link.all lib's are related to Magnifying glass sample app
https://github.com/search?l=Objective-C&q=magnifying+glass&type=Repositories&utf8=%E2%9C%93