Live Rendering a custom component using IB_DESIGNABLE from a pod dependency

陌路散爱 提交于 2019-11-30 03:08:02

This has been fixed in the latest version of Cocoapods (0.36.0.beta.1).

To install this version:

[sudo] gem install cocoapods --pre

More information about Cocoapods with frameworks here

In order to fix the Error: "failed to load designables from path (null)":

platform :ios, '7.0'

use_frameworks!

target 'test' do
pod 'EAColourfulProgressView', '~> 0.1.0'
end

target 'testTests' do

end

Add use_frameworks! to you Podfile.

When specifying your custom class in the Identity Inspector, are you specifying from which module this class should be loaded? The module should be the name of the library the class comes from.

I Resolved my problem using use_frameworks! on the PodFile, in the first Line. (don't forget the !)

IBInspectable properties must be Dynamic, so it asks for a Dynamic Linkage of the Library. By using the above line, as soon as you set the class of a control, it will build the framework and link it, resolving this binding issues. When I upgraded to beta, Parse stopped working.

Hope it helps someone.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!