こんにちは私は、スクリーンショットに示すように、AutoLayout constriantsを使用して2行のボタンを表示し、各行に3つのボタンを表示するXIBを設計しました(満足のいくレイアウトが得られたら、ボタンを赤いUIViewに配置します)。
これまでのところ、上に示したポートレートモードでは、ボタンは問題なく表示されます。ただし、回転してヘッダー(青色)と親ビュー(灰色)のサイズを変更して正しく表示すると、赤いボタンのビューが消えます(以下を参照)。
これを正しく機能させるために制約を設定するための最良の方法は何ですか?私はRayWenderlichチュートリアルに従い、彼の例で使用したものと同じEditor \ Pin]VerticalSpacingおよびEditor\Pin\Horizontal間隔を使用しました 。RayWenderlichチュートリアル
また、次のような多くの制約エラーが発生します。
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x859abe0 UIView:0x85a8fb0.height == UIView:0x85a8e60.height>",
"<NSLayoutConstraint:0x859ab60 V:[UIView:0x85a8fb0]-(114)-| (Names: '|':UIView:0x85a8170 )>",
"<NSLayoutConstraint:0x859ab20 V:|-(424)-[UIView:0x85a8fb0] (Names: '|':UIView:0x85a8170 )>",
"<NSLayoutConstraint:0x85a3430 V:|-(150)-[UIView:0x85a8170] (Names: '|':UIView:0x85a8da0 )>",
"<NSLayoutConstraint:0x85a33b0 V:[UIView:0x85a8170]-(NSSpace(20))-| (Names: '|':UIView:0x85a8da0 )>",
"<NSAutoresizingMaskLayoutConstraint:0x75ac610 h=--& v=--& V:[UIView:0x85a8da0(704)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x859ab60 V:[UIView:0x85a8fb0]-(114)-| (Names: '|':UIView:0x85a8170 )>
Break on objc_exception_throw to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
私はこれで終わりですので、このエルダイトグループからの助けをいただければ幸いです...!