IBDesignable在框架中没有处理嵌入式项目

时间:2017-07-04 01:47:28

标签: ios swift storyboard ibdesignable swift-framework

我创建了一个具有自定义IBDesignable UIView的框架。当我在项目中仅包含框架时,IBInspectable属性不会显示在属性检查器中,但我可以以编程方式使用视图属性。

我检查了一些关于堆栈溢出的帖子以及针对类似问题的解决方案,并发现此回复很有用https://stackoverflow.com/a/39999914/5548640。当我在swift中开发框架时,我通过创建扩展而不是类别来尝试此解决方案(因为swift中没有类别)。此解决方案无法按预期工作。

我不希望我的框架用户看到我的代码,但应该能够使用@IBDesignable @IBInspectable功能。此外,我不希望框架用户子类使用IBInspectable属性。

1 个答案:

答案 0 :(得分:0)

请在您的pod文件中添加此行代码。然后使用终端使用命令:pod install

enter image description here

 # Workaround for Cocoapods issue #7606
      post_install do |installer|
          installer.pods_project.build_configurations.each do |config|
              config.build_settings.delete('CODE_SIGNING_ALLOWED')
              config.build_settings.delete('CODE_SIGNING_REQUIRED')
          end
      end