I have added a XIB based UIViewController
to my solution and dragged some UIViews
into it.
Now I want some of the views not to be UIView
but RoundedRectView
(https://github.com/Krumelur/RoundedRectView) which inherits from UIView
.
How to achieve this? I tried to change the class in Interface Builder but that did nothing. Then I manually modified the designer.cs file but that resulted in a failure. Then I tried modifying the fake ObjC code but that failed too.
(I'm using Xcode 4.2 and MD 2.8.6.4)