3

私は既存のアプリをナレーションで可能な限りアクセスできるようにしようとしています。

現在、私はuiviewcontrollerを持っています。これは基本的に、表示されている現在の画像/ページを示すuiscrollView(tourScrollView)の下にuipagecontrolを備えたページング写真ビューです。

現在のページを計算するコードは次のとおりです。

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
    CGFloat pageWidth = scrollView.frame.size.width;
    self.tourScrollView.isAccessibilityElement = NO;
    scrollView.isAccessibilityElement = NO;
    int currentPage = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
    pageControl.currentPage = currentPage;
}

ページ計算コードは完璧に機能します。

合計5枚の画像が表示されています。

ボイスオーバーが有効になっている場合、スクロールビューがスクロールすると、移動する代わりに

page 1 of 5
page 2 of 5
page 3 of 5
page 4 of 5
page 5 of 5

こんなふうになります。

page 1 of 6
page 2 of 6
page 3 of 6
page 5 of 6
page 6 of 6

画像がscrollViewに追加されるコードは次のとおりです

-(void)addImagesToScrollview{

    NSArray *welcomeImages = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"img-01.png"],
                              [UIImage imageNamed:@"img-02.png"],
                              [UIImage imageNamed:@"img-03.png"],
                              [UIImage imageNamed:@"img-04.png"],
                              [UIImage imageNamed:@"img-05.png"],nil];

    CGRect scrollViewFrame = tourScrollView.frame;
    CGFloat scrollViewWidth = scrollViewFrame.size.width;
    CGFloat scrollViewHeight = scrollViewFrame.size.height;
    CGFloat imageX;
    for (int i = 0; i<[welcomeImages count]; i++) {

        int index = i;
        imageX = (scrollViewWidth*index) + (scrollViewWidth - IMAGE_WIDTH)/2.0;

        CGRect boarderViewRect = CGRectMake(imageX, 20.0f, IMAGE_WIDTH, IMAGE_HEIGHT);

        UIView *whiteBorderView = [[UIView alloc] initWithFrame:boarderViewRect];
        whiteBorderView.backgroundColor = [UIColor whiteColor];

        UIImageView *imageView = [[UIImageView alloc]initWithImage:[welcomeImages objectAtIndex:i]];
        CGRect imageRect = CGRectInset(boarderViewRect, IMAGE_INSET, IMAGE_INSET);
        imageView.frame = imageRect;

        CGRect descriptionRect = CGRectMake((scrollViewWidth*index) + 20.0f, imageRect.origin.y + imageRect.size.height+10, 280, 90);
        CGSize maximumLabelSize = CGSizeMake(descriptionRect.size.width,120);
        descriptionRect.size = [[self descriptionForIndex:i] sizeWithFont:[UIFont systemFontOfSize:16.0] constrainedToSize:maximumLabelSize lineBreakMode:UILineBreakModeTailTruncation];
        UILabel *imageDescription = [[UILabel alloc] initWithFrame:descriptionRect];
        imageDescription.text = [NSString stringWithFormat:@"%@",[self descriptionForIndex:i]];
        imageDescription.numberOfLines = 0;
        imageDescription.backgroundColor = [UIColor clearColor];
        imageDescription.font = [UIFont systemFontOfSize:16.0];
        imageDescription.textColor = [UIColor colorWithRed:(119.0/255.0) green:(119.0/255.0) blue:(119.0/255.0) alpha:1.0];
        imageDescription.textAlignment = UITextAlignmentCenter;
        imageDescription.shadowColor = [UIColor whiteColor];
        imageDescription.shadowOffset = CGSizeMake(0,1);

        [tourScrollView addSubview:whiteBorderView];
        [tourScrollView addSubview:imageView];
        [tourScrollView addSubview:imageDescription];

        if (i == [welcomeImages count]-1) {
            tourScrollView.contentSize = CGSizeMake(imageView.frame.origin.x + scrollViewWidth -((scrollViewWidth - IMAGE_WIDTH)/2.0), scrollViewHeight); 
        }
    }
}

誰かが私を正しい方向に向けて、正しいページ番号をナレーションで言ってくれれば幸いです。

更新:pagingEnabledを有効/無効にしても違いはありません。voiceOverは、スクロールビューのサイズに基づいて行うページング計算を上書きすると思います。

4

2 に答える 2

0

これを修正したのは次のとおりです。

コメント化されたコードを削除し、for ループの外側にコンテンツ サイズの行を追加しました

-(void)addImagesToScrollview{

NSArray *welcomeImages = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"img-01-welcome.png"],
                          [UIImage imageNamed:@"img-02-welcome.png"],
                          [UIImage imageNamed:@"img-03-welcome.png"],
                          [UIImage imageNamed:@"img-04-welcome.png"],
                          [UIImage imageNamed:@"img-05-welcome.png"],nil];

CGRect scrollViewFrame = tourScrollView.frame;
CGFloat scrollViewWidth = scrollViewFrame.size.width;
CGFloat scrollViewHeight = scrollViewFrame.size.height;
CGFloat imageX;
for (int i = 0; i<[welcomeImages count]; i++) {

    int index = i;
    imageX = (scrollViewWidth*index) + (scrollViewWidth - IMAGE_WIDTH)/2.0;

    CGRect boarderViewRect = CGRectMake(imageX, 20.0f, IMAGE_WIDTH, IMAGE_HEIGHT);

    UIView *whiteBorderView = [[UIView alloc] initWithFrame:boarderViewRect];
    whiteBorderView.backgroundColor = [UIColor whiteColor];

    UIImageView *imageView = [[UIImageView alloc]initWithImage:[welcomeImages objectAtIndex:i]];
    CGRect imageRect = CGRectInset(boarderViewRect, IMAGE_INSET, IMAGE_INSET);
    imageView.frame = imageRect;

    CGRect descriptionRect = CGRectMake((scrollViewWidth*index) + 20.0f, imageRect.origin.y + imageRect.size.height+10, 280, 90);
    CGSize maximumLabelSize = CGSizeMake(descriptionRect.size.width,120);
    descriptionRect.size = [[self descriptionForIndex:i] sizeWithFont:[UIFont systemFontOfSize:16.0] constrainedToSize:maximumLabelSize lineBreakMode:UILineBreakModeTailTruncation];
    UILabel *imageDescription = [[UILabel alloc] initWithFrame:descriptionRect];
    imageDescription.text = [NSString stringWithFormat:@"%@",[self descriptionForIndex:i]];
    imageDescription.numberOfLines = 0;
    imageDescription.backgroundColor = [UIColor clearColor];
    imageDescription.font = [UIFont systemFontOfSize:16.0];
    imageDescription.textColor = [UIColor colorWithRed:(119.0/255.0) green:(119.0/255.0) blue:(119.0/255.0) alpha:1.0];
    imageDescription.textAlignment = UITextAlignmentCenter;
    imageDescription.shadowColor = [UIColor whiteColor];
    imageDescription.shadowOffset = CGSizeMake(0,1);

    [tourScrollView addSubview:whiteBorderView];
    [tourScrollView addSubview:imageView];
    [tourScrollView addSubview:imageDescription];

//        if (i == [welcomeImages count]-1) {
//            tourScrollView.contentSize = CGSizeMake(imageView.frame.origin.x + scrollViewWidth -((scrollViewWidth - IMAGE_WIDTH)/2.0), scrollViewHeight); 
//        }
    }
    tourScrollView.contentSize = CGSizeMake(320.0*[welcomeImages count], scrollViewHeight);
}

VO がページ番号を台無しにする理由はまだわかりません。修正前と修正後のスクロールビューの動作は同じです (バウンスとページングの動作は同じです)。

この問題について詳しく知ることができれば、回答が更新されます。

于 2012-08-15T16:47:56.997 に答える