2
をマークすることはできませんプロパティ@IBInspectableは、Xcodeの9をインストールした後、この問題を解決する方法を
/// The mode of the gradient. The default is `.Linear`.
@IBInspectable open var mode: Mode = .linear {
didSet {
setNeedsDisplay()
}
}
/// The direction of the gradient. Only valid for the `Mode.Linear` mode. The default is `.Vertical`.
@IBInspectable open var direction: Direction = .vertical {
didSet {
setNeedsDisplay()
}
}
エラーメッセージがきれいです – Sulthan
「[enum型のIBInspectableを作成する方法]」(https://stackoverflow.com/questions/27432736/how-to-create-an-ibinspectable-of-type-列挙型) –
質問を編集して、適切なコード書式を使用してテキスト形式のコードを組み込んでください。質問にスクリーンショットとしてコードを含めないでください。 –