视图属性未出现在情节提要中

时间:2018-11-04 21:59:04

标签: ios xcode

自从我开始使用项目中的Pods在iOS上进行编程以来,我一直在苦苦挣扎,例如,当我安装Floaty Pod时没有出现问题,而当我使用它时,我看不到视图的属性,因此我可以将其设计为我的按钮。

enter image description here

我已经通过以下方式指出了所属的类,但是无法显示属性。

enter image description here

它应该出现,但我无法弄清为什么它没有以这种方式出现在Github存储库https://github.com/kciter/Floaty中:

enter image description here

这不仅在该库中发生,而且在我已安装的所有库中都发生过,例如MaterialComponents的情况,如果我经历了一段时间后遇到类似的情况,有人可以帮助我,我可以找不到根本解决方案。

  • Xcode版本为:版本10.1(10B61)
  • cocoapods的版本为:cocoapods-1.5.3
  • ruby​​版本是:ruby 2.3.7p456。

1 个答案:

答案 0 :(得分:2)

这不是Cocoapods问题,而是此项目的Floating.swift文件中的问题。我刚刚在Github上提出了对此错误的请求。好像在改变:

  @IBInspectable
  @objc open var autoCloseOnTap: Bool = true

收件人:

  @objc @IBInspectable
  open var autoCloseOnTap: Bool = true

解决了该问题。

如果有人对此有所解释,我将不胜感激。