2017-08-11 5 views

答えて

0

は、iOS 10.
が含まれます。
ただし、AutoLayoutをカスタムtitleViewに調整する場合は、以下のようにします。

UIView *customTitleView; //Assume that is custom titleView on UINavigationItem. 

if (customTitleView.superview != nil) { 
    [customTitleView.superview addConstraint:[NSLayoutConstraint constraintWithItem:customTitleView 
                    attribute:blahblah 
                    relatedBy:blahblah 
                     toItem:customTitleView.superview 
                    attribute:blahblah 
                    multiplier:1.0 
                     constant:0.0]]; 
} 
関連する問題