I have implemented delegate for scrollview in webview. Since , iOS 5 the default scrollview is no longer responding to didZoom event. Why is this behavior ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The UIWebView object in iOS has a scrollview object which was exposed from iOS5 onwards with webView.scrollView property. Previously, webView was the delegate of the scrollview. Since, iOS5 webView is delegate for some methods and scrollview is delegate for other methods.
Of course this is just a hack and not perfect solution.