5
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];
애니메이션을하고 회색 상자가있는 동안
는 웹보기의 내용이 즉시 애니메이션없이 새 크기로 전환됩니다. (scalesPageToFit 속성이 YES로 설정 됨)그 어떤 제안 사항이 있습니까?