【決定版】IBDesignable, IBInspectable
そもそもIBDesignable, IBInspectable とは?
IBInspectable
デフォルトのInterfaceBuilderではbackgroundColor
, textColor
などはいじれますが、shadow
系, layer.cornerRadius
, layer.borderWidth
, layer.borderColor
などはいじれません。
そこら辺をいじれるように変えてくれるのがIBInspectable。
IBDesignable
上記の設定をIBInspectableで設定しただけではInterfaceBuilderでViewの見た目はリアルタイムには変わってくれなく、ビルドしないと確認できません。
そこでIBInspectableを設定してリアルタイムに確認できるようにしてくれるのがIBDesignable。
手順
1.
何も考えずに以下をコピペして新しいファイルを作る。
import UIKit
@IBDesignable
class DesignableView: UIView {
}
@IBDesignable
class DesignableButton: UIButton {
}
@IBDesignable
class DesignableLabel: UILabel {
}
extension UIView {
@IBInspectable
var cornerRadius: CGFloat {
get {
return layer.cornerRadius
}
set {
layer.cornerRadius = newValue
}
}
@IBInspectable
var borderWidth: CGFloat {
get {
return layer.borderWidth
}
set {
layer.borderWidth = newValue
}
}
@IBInspectable
var borderColor: UIColor? {
get {
if let color = layer.borderColor {
return UIColor(cgColor: color)
}
return nil
}
set {
if let color = newValue {
layer.borderColor = color.cgColor
} else {
layer.borderColor = nil
}
}
}
@IBInspectable
var shadowRadius: CGFloat {
get {
return layer.shadowRadius
}
set {
layer.shadowRadius = newValue
}
}
@IBInspectable
var shadowOpacity: Float {
get {
return layer.shadowOpacity
}
set {
layer.shadowOpacity = newValue
}
}
@IBInspectable
var shadowOffset: CGSize {
get {
return layer.shadowOffset
}
set {
layer.shadowOffset = newValue
}
}
@IBInspectable
var shadowColor: UIColor? {
get {
if let color = layer.shadowColor {
return UIColor(cgColor: color)
}
return nil
}
set {
if let color = newValue {
layer.shadowColor = color.cgColor
} else {
layer.shadowColor = nil
}
}
}
}
2.
ナントカインスペクタからViewControllerに適当なもの(今回はUIView)をドラック。
3.
IdentityInspectorにDesignableView
を選択。
4.
意味あるかわからないけど、念のためにも一度ビルドして、UIViewを選択した上でattributeInspetorを開いてみる。
5.
と、色々いじるとリアルタイムに反映されるようになってる。
いいねありがとうございます
Author And Source
この問題について(【決定版】IBDesignable, IBInspectable), 我々は、より多くの情報をここで見つけました https://qiita.com/son_s/items/7ca2acf690d10f9fd1b7著者帰属:元の著者の情報は、元の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 .