0

タイトルおよびコンテンツとしてビューを変更するには、スワイプする必要があるとがありUIPageControlます。UIScrollViewUILabelUITextView

ポートレートビューでは、小さな問題を除いて、との両方UILabelで問題ありません。私のが中央UITextViewかに関係なく、常にビューの左隅に表示されますtextAlignmentUILabel

そして今、風景の眺めに。これは、問題のほとんどが発生する場所です。

これはそれがどのように見えるかです、

ここに画像の説明を入力してください

そして、コードに関しては、

- (void)viewDidLoad
{
    [super viewDidLoad];

    pageControl.currentPage = 0;
    pageControl.numberOfPages = 4;

    scrollView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
    pageControl.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin;
}

- (void)contentSize
{
    for (int i = 0; i < 4; i++) {
        CGRect textViewFrame = CGRectMake(scrollView.frame.size.width * i, 30.0, 320.0, scrollView.frame.size.height - 30.0);

        CGRect labelFrame = CGRectMake(scrollView.frame.size.width * i, 0.0, 320.0, 0.0);

        UITextView *textView = [[UITextView alloc] initWithFrame:textViewFrame];
        UILabel *label = [[UILabel alloc] initWithFrame:labelFrame];

        switch (i) {
            case 0:
                label.text = @"Test 1";
                textView.text = @"Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.";
                break;

            case 1:
                label.text = @"Test 2";
                textView.text = @"2";
                break;

            case 2:
                label.text = @"Test 3";
                textView.text = @"3";
                break;

            case 3:
                label.text = @"Test 4";
                textView.text = @"4";
                break;

            default:
                break;
        }

        textView.editable = NO;
        textView.textColor = [UIColor grayColor];
        textView.textAlignment = NSTextAlignmentRight;
        [textView setFont:[UIFont fontWithName:@"Symbol" size:13]];

        label.textAlignment = NSTextAlignmentCenter;
        [label setFont:[UIFont fontWithName:@"AmericanTypewriter" size:20]];
        [label sizeToFit];

        [scrollView addSubview:label];
        [scrollView addSubview:textView];
    }

    scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * 4, scrollView.frame.size.height);
}

- (void)viewDidLayoutSubviews
{
    [self contentSize];
}

- (void)scrollViewDidScroll:(UIScrollView *)sender
{
    CGFloat pageWidth = scrollView.frame.size.width;
    int page = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
    self.pageControl.currentPage = page;
}
4

1 に答える 1

1

まず第一に、 を使用[label sizeToFit];するとラベルの幅が狭くなるため、ラベルは常に左側にあります。サイズを小さくしてラベルの幅をページの幅に維持したくない場合は、使用しないでください。

スクロールビューのサイズを変更してもスクロールのコンテンツが変わらないため、スクロールのページの問題が発生します。あなたがする必要があるのは、向きが変わったときです(である可能性があります (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration):

  • 新しいフレームのサイズを設定したら、スクロールビューのコンテンツ サイズを調整します (ページの高さが小さくなり、幅が大きくなりました)。

  • サブビューのフレームを新しい方向に変更します (つまり、ページにスクロールビューの新しい境界を割り当て、origin.x を再割り当てします)。

  • 必要に応じて、各ページのコンテンツを調整します

  • 現在見ているページまでスクロールします。

コード(私が持っているページャーコンポーネントから、あなたが働くために何かを適応させる必要があるかもしれません):

-(void) scrollToCurrentPage {
    CGRect frameCurrent =  scrollview.frame;
    frameCurrent.origin.x = _currentPageNumber*frameCurrent.size.width;
    frameCurrent.origin.y = 0;
    //_currentPage is a reference to the page that was being watched before rotation
    _currentPage.frame = frameCurrent; 
    [_container scrollRectToVisible: frameCurrent animated: NO];
}
于 2013-03-05T16:52:30.927 に答える