Hello all ,
I am using a xib file as a back view in coverflow component . and it is seeing nicely .
The code for loading a xib file is :
NSArray *array = [[NSBundle mainBundle] loadNibNamed:@"TestMine" owner:nil options:nil];
backView = [array objectAtIndex:0];
Now I want to attach a view controller with this xib without changing the current code .
How can I do so ?
I am getting the error : Exception :*** -[UIViewController superview]: unrecognized selector sent to instance 0x5891120
Tell me if more details need to answer the question .
Thanks .