Hi, I am planning to write a custom view that will render some stuff using Quartz. After looking into some sample code in apple site, I decided to subclassing UIView to create my own view:
@interface myView : UIView {
}
@end
Now my question is, what would be the best way t bind my view with the viewController? While loading from NIB file, we directly assign the view controller file as fileowner type. In case of custom UIView, how can we do this?