UIScrollView があり、 scrolling を有効にしました。デリゲート メソッドで正常に動作します。
- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView
{
return MyScrollView;
}
しかし、私が直面している問題は、iPad を回転させるときに UIScrollView をズームアウトする必要があることです。この関数でコーディングする必要があるもの
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight){
}
if(interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
{
}
}