I'm building a custom UIView for some custom drawing. So I subclassed UIView - MyUICustomView --.
Into this UIView's drawRect
method, I'd like to programmatically include another view - MyMovingView
- inside which I want to draw some CG graphics, then move that new drawn subview around inside my main view (the one that MyUICustomView
own).