0

UIViewController をすばやくスムーズにスライドできるスライド ナビゲーション コントローラーを作成しました (Facebook スタイル)。それ以来、独自の子ビュー コントローラーとテーブル ビューを持つ子ビュー コントローラーを持つ UIViewController を追加しました。最下位の子ビュー コントローラーにもビュー サブビューがあります。この UIViewController には、トップ ビューをスライドさせたときに表示されるビューがあります。

このView Controllerの有無にかかわらず、滑らかさをテストしました。それがなければ、スライドは毎秒 60 フレームで実行されますが、それを使用すると、私のデバイスは 20 から 30 fps の不安定な速度しか管理しません。

サブビューの削除も試してみましたが、少し改善されたようですが、期待したほどではありませんでした。別のかなり複雑なビュー コントローラー (ただし、子ビュー コントロールなし) に切り替えた場合でも、パフォーマンスが大幅に向上します。

アプリ全体で自動レイアウトを使用していますが、これが問題であると考えるようになりました。この不適切なスライドが発生している間、私のコードは実行されていないため、より多くのビューが表示されているときに計算される制約と関係があると思いますが、確かではありません.

クラス全体を含めないようにするため、ビュー コントローラーとサブビューの updateViewConstraint メソッドを次に示します。

トップビューコントローラー

/**
 *  Called when the view controller’s view needs to update its constraints.
 */
- (void)updateViewConstraints
{
    [super updateViewConstraints];

    //  remove all constraints
    [self.view removeConstraints:self.view.constraints];

    NSArray *constraints;

    //  add the table view to the top of the view and the parameters view to the bottom
    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(Panel)-[tableView]|"
                                                                options:kNilOptions
                                                                metrics:@{@"Panel": @(kPanelWidth)}
                                                                  views:self.viewsDictionary];

    [self.view addConstraints:constraints];

    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[tableView]-|"
                                                                options:kNilOptions
                                                                metrics:nil
                                                                  views:self.viewsDictionary];
        [self.view addConstraints:constraints];

    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(PanelPlus)-[recipeParameters]-|"
                                                                options:kNilOptions
                                                                metrics:@{@"PanelPlus": @(kPanelWidth + 20)}
                                                                  views:self.viewsDictionary];
    [self.view addConstraints:constraints];

    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"V:[recipeParameters(==Height)]|"
                                                                options:kNilOptions
                                                                metrics:@{  @"Height"   : @(kParametersControllerHeight)}
                                                                  views:self.viewsDictionary];
    [self.view addConstraints:constraints];
}

最初の子ビュー コントローラー

/**
 *  Called when the view controller’s view needs to update its constraints.
 */
- (void)updateViewConstraints
{
    [super updateViewConstraints];

    //  remove all constraints
    [self.view removeConstraints:self.view.constraints];

    NSArray *constraints                = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|[pageView]|" options:kNilOptions
                                                                      metrics:nil views:self.viewsDictionary];
    [self.view addConstraints:constraints];

    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[pageView]|" options:kNilOptions
                                                                metrics:nil views:self.viewsDictionary];
    [self.view addConstraints:constraints];
}

2 番目の子ビュー コントローラー

- (void)updateViewConstraints
{
    [super updateViewConstraints];

    NSArray *constraints;

    //  remove all constraints
    [self.view removeConstraints:self.view.constraints];

    if (self.interfaceOrientation == UIInterfaceOrientationPortrait || self.interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
    {
        constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-(8)-[optionLabel]-[selectionWheel]-[includeExclude(==32)]-|"
                                                                    options:NSLayoutFormatAlignAllCenterX
                                                                    metrics:nil
                                                                      views:self.viewsDictionary];
        [self.view addConstraints:constraints];

        constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[selectionWheel]-|"
                                                                    options:kNilOptions
                                                                    metrics:nil
                                                                      views:self.viewsDictionary];
        [self.view addConstraints:constraints];

        constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[includeExclude]-|"
                                                                    options:kNilOptions
                                                                    metrics:nil
                                                                      views:self.viewsDictionary];
        [self.view addConstraints:constraints];
    }
    else
    {
        constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-[selectionWheel]-|" options:kNilOptions
                                                                    metrics:nil views:self.viewsDictionary];
        [self.view addConstraints:constraints];

        constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|-[optionLabel]-[selectionWheel]-(Balance)-|"
                                                                    options:NSLayoutFormatAlignAllCenterY
                                                                    metrics:@{@"Balance": @(self.optionLabel.bounds.size.width + 40)}
                                                                      views:self.viewsDictionary];
        [self.view addConstraints:constraints];
    }
}

カスタム UICONTROL (2 番目の子ビュー コントローラーのサブビュー)

/**
 *  Update constraints for the view.
 */
- (void)updateConstraints
{
    [super updateConstraints];

    [self removeConstraints:self.constraints];
    [self.excludeButton removeConstraints:self.excludeButton.constraints];
    [self.includeButton removeConstraints:self.includeButton.constraints];

    NSArray *constraints;
    NSLayoutConstraint *constraint;

    //  add everything to fill the bounds
    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"V:|-(==6)-[excludeButton]-(==6)-|"
                                                                options:kNilOptions
                                                                metrics:nil
                                                                  views:self.viewsDictionary];
    [self addConstraints:constraints];

    constraints                         = [NSLayoutConstraint constraintsWithVisualFormat:@"H:|[excludeButton][optionLabel][includeButton]|"
                                                                options:NSLayoutFormatAlignAllTop | NSLayoutFormatAlignAllBottom
                                                                metrics:nil
                                                                  views:self.viewsDictionary];
    [self addConstraints:constraints];


    //  make the exclude and include buttons square
    constraint                          = [NSLayoutConstraint constraintWithItem:self.excludeButton attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.excludeButton attribute:NSLayoutAttributeHeight multiplier:1.0f constant:0.0f];
    [self.excludeButton addConstraint:constraint];
    constraint                          = [NSLayoutConstraint constraintWithItem:self.includeButton attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.includeButton attribute:NSLayoutAttributeHeight multiplier:1.0f constant:0.0f];
    [self.includeButton addConstraint:constraint];
}

最上位の UIViewController の実装はこちらです。

4

0 に答える 0