我试图使用@IBInspectable制作一个自定义UIViewController的框架来编辑它在Interface Builder中的属性.
public class BWWalkthroughPageViewController: UIViewController { @IBInspectable public var speed: CGPoint = CGPointZero @IBInspectable public var speedVariance: CGPoint = CGPointZero @IBInspectable public var animationType: String = "" @IBInspectable public var animateAlpha: Bool = false }
如果框架源代码在示例应用程序项目中,则属性将显示在属性检查器中,如下图所示,
但是如果我将构建的框架添加到我的应用程序项目中,则属性不会显示在检查器中.
是否可以在Interface Builder的内置框架中显示可检测的属性?如有可能,怎么办?
这是框架源代码,它是从非框架项目分支的.
https://github.com/yoichitgy/BWWalkthrough/tree/support-carthage