Storyboard上で枠線関連の調整が可能なUIView
713 ワード
CALayer要素の調整をStoryboard上から行えるようにする。
下記クラスを使用することでそれが可能になる。
import UIKit
@IBDesignable class DesignableView: UIView {
@IBInspectable var borderWidth: CGFloat = 0 {
didSet {
layer.borderWidth = borderWidth
}
}
@IBInspectable var cornerRadius: CGFloat = 0 {
didSet {
layer.cornerRadius = self.frame.size.width/2
}
}
@IBInspectable var borderColor: UIColor = UIColor.blackColor() {
didSet {
layer.borderColor = borderColor.CGColor
}
}
}
UI要素の調整はStoryboard上で行うほうが何かと便利。
Author And Source
この問題について(Storyboard上で枠線関連の調整が可能なUIView), 我々は、より多くの情報をここで見つけました https://qiita.com/color_box/items/946989823337dd5bc0e2著者帰属:元の著者の情報は、元の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 .