I have created a custom UIView
and I would like to initialize
it with custom parameters from the UIStoryboard
. Basically I have added a UIView
in the UIStoryboard
and I have changed the class to my custom UIView
.
In my custom UIView
class I'm using the initWithCoder
method to initialize
it but I would like to use the provided NSCoder
to get some configuration parameters from the UIStoryboard
, is this possible or is there another way to pass parameters from the UIStoryboard
to my custom UIView
?
Thanks!!