interfacebuilderとAuto layoutで1pxの線を出す
CALayerなんかを使ってUIVewに線を追加するやり方なんかはわりとよくあるのだけど、InterfaceBuilder上でいい感じの位置に線を出したいとなるとちょいと工夫が必要だったのでメモ
まずは結果から
求められているのは0.5の線。
いまいち理解が甘いのですがAutolayoutでHeight=1を設定しても2px程度になるようです。
新規に設定する場合
そしてAutolayoutの設定で Heightに.5と入力
ここまではOK。
途中から設定する場合
しかし上記のHeight 0.5、初回にかけてあげることはできるようですが、
こちらのSize Inspectorからは設定できない模様・・・・
ちょっと新規でやりなおすのもな・・・という時は、下記のやり方もあるようです。
class ViewController: UIViewController {
// constraint outlet
@IBOutlet weak var heightConstraint: NSLayoutConstraint!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
heightConstraint.constant = 0.5
}
}
こんな具合でconstraintを変更してやることでも可能なようです。
Author And Source
この問題について(interfacebuilderとAuto layoutで1pxの線を出す), 我々は、より多くの情報をここで見つけました https://qiita.com/terrierscript/items/211507c2a1a8baf407cb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .