I\'d like to create some custom views that use the @IBDesignable
and @IBInspectable
tags. I have added these to my Framework and then linked my Fra
Alright, so apparently if you want to include @IBDesignabl
e and @IBInspectable
in a framework
the framework
has to either be:
Framework
will not be in it's own project. (i.e. adding a framework as a target by doing something like 'file -> new.. -> target -> framework'
from consuming application).external framework
as a CocoaPod
in your consuming application. This actually adds the framework
as a target rather than just linking the framework
against the application.
CocoaPods
in a project, so don't worry you don't have to deploy your framework
to the public just to do this.