配置が異なる3つのスタックを配置したい
1-Image 0-0 下の画像のように両端
2- ユーザー情報 + テキスト 10-10 フォームの両端
それらを一緒にスタックするときの問題は、スタックごとにスタックなしですべてのマージンをすべて 0 に設定することしかできません。
私のプロジェクトでは、すべてのコンテンツが画像の左にスタックしています。両方のマージンからユーザー+テキストスタックにスペースが必要です! これを下の画像のように修正するにはどうすればよいですか?
配置が異なる3つのスタックを配置したい
1-Image 0-0 下の画像のように両端
2- ユーザー情報 + テキスト 10-10 フォームの両端
それらを一緒にスタックするときの問題は、スタックごとにスタックなしですべてのマージンをすべて 0 に設定することしかできません。
私のプロジェクトでは、すべてのコンテンツが画像の左にスタックしています。両方のマージンからユーザー+テキストスタックにスペースが必要です! これを下の画像のように修正するにはどうすればよいですか?
私は本当にUIStackView
s が好きなので、あなたの問題を実験の理由として使いました。以下を Xcode 7 プレイグラウンドに貼り付けることができます。
import UIKit
import XCPlayground
let hostView = UIView(frame: CGRect(x: 0, y: 0, width: 320, height: 480))
hostView.backgroundColor = .whiteColor()
XCPlaygroundPage.currentPage.liveView = hostView
let headerLabel = UILabel()
headerLabel.translatesAutoresizingMaskIntoConstraints = false
headerLabel.numberOfLines = 0
headerLabel.text = "This is an info text shown on top of the image. The info text should inform the reader about the topic."
let topStackView = UIStackView(arrangedSubviews: [headerLabel])
let image = UIImage(named: "header.jpg")
let imageView = UIImageView(image: image)
imageView.backgroundColor = .yellowColor()
imageView.contentMode = .ScaleAspectFit
let bottomLabel = UILabel()
bottomLabel.translatesAutoresizingMaskIntoConstraints = false
bottomLabel.numberOfLines = 0
bottomLabel.text = "This is the story text. It is interessting and shows a lot insight to the topic. The reader should be eager to read it and at the end he/she would be able to share with friends and family."
let bottomStackView = UIStackView(arrangedSubviews: [bottomLabel])
let stackView = UIStackView(arrangedSubviews: [topStackView, imageView, bottomStackView])
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.axis = .Vertical
stackView.spacing = 10
hostView.addSubview(stackView)
let views = ["stackView": stackView]
var layoutConstraints: [NSLayoutConstraint] = []
layoutConstraints += NSLayoutConstraint.constraintsWithVisualFormat("|[stackView]|", options: [], metrics: nil, views: views)
layoutConstraints += NSLayoutConstraint.constraintsWithVisualFormat("V:|[stackView]", options: [], metrics: nil, views: views)
layoutConstraints.append(headerLabel.leadingAnchor.constraintEqualToAnchor(topStackView.leadingAnchor, constant: 10))
layoutConstraints.append(headerLabel.trailingAnchor.constraintEqualToAnchor(topStackView.trailingAnchor, constant: 10))
let imageSize = image!.size
let imageHeight = hostView.frame.size.width * imageSize.height / imageSize.width
layoutConstraints.append(imageView.heightAnchor.constraintEqualToConstant(imageHeight))
layoutConstraints.append(bottomLabel.leadingAnchor.constraintEqualToAnchor(bottomStackView.leadingAnchor, constant: 10))
layoutConstraints.append(bottomLabel.trailingAnchor.constraintEqualToAnchor(bottomStackView.trailingAnchor, constant: 10))
NSLayoutConstraint.activateConstraints(layoutConstraints)
または、私のUIStackViewPlaygroundの Story View ページをご覧ください。