-2

私の問題は次のようになります:-

{       someview = [[someview1 alloc]initWithFrame:CGRectMake(0, 0, 1024, 1024)) resolution:CGSizeMake(768, 960))];

    scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(0, 0,768,960)];
            scrollView.contentSize = CGSizeMake(1024,1024);


     scrollView.bouncesZoom = YES;
        scrollView.pagingEnabled = YES;
        scrollView.backgroundColor = [UIColor blackColor];
        scrollView.showsHorizontalScrollIndicator = YES;
        scrollView.showsVerticalScrollIndicator = YES;  
        scrollView.userInteractionEnabled = YES;
        CGRect Frame=rdcview.bounds;
        scrollView.minimumZoomScale = 1.0; 
        scrollView.maximumZoomScale = 2.0;
       [scrollView setDelegate:self];

        [scrollView addSubview:someview1];
        [self.view addSubview:scrollView];
}

このすべての後、デバイスを回転させましたが、ビューはすべての方向にスクロール可能ではありません。解決策を見つけるのを手伝ってください。

注:-スクロールしますが、スティックはしません。指を離すと、前の
位置に戻ります。

4

1 に答える 1

1

タイプミスがあると思います。

変化する:

[scrollView addSubview:someview1];

に:

[scrollView addSubview:someview];
于 2012-06-10T09:06:20.967 に答える