Hello,
Consider this as my SubView
UIView *subViewObj;
and this as MainView
UIView *mainViewObj;
i need to make MainView as root View can i don it in this way?
[mainViewObj addSubview:subViewObj];
is this correct?i need to do it programitically, without using Interface builder.