मुझे आश्चर्य है कि UIWebView के आकार और स्थिति को एनिमेट करने का कोई तरीका था या नहीं। मैं इस तरह sth करते:UIWebView और एनीमेशन
[UIView animateWithDuration:1.0 animations:^{
self.frame = CGRectMake(20.0, 20.0, 80.0, 80.0);
}];
या
[UIView beginAnimations:@"zoomIn" context:nil];
[UIView setAnimationDuration:2.75];
[UIView setAnimationDelegate: self];
self.frame = CGRectMake(20.0, 20.0, 80.0, 80.0);
[UIView commitAnimations];
जबकि वहाँ एक ग्रे एनीमेशन कर बॉक्स है, WebView की सामग्री तुरन्त एनिमेट बिना नए आकार में चला जाएगा। (स्केलपेजटॉफिट संपत्ति YES पर सेट है)
उस पर कोई सुझाव?