FlipView *fl=[[FlipView alloc] initWithNibName:@"FlipView" bundle:nil];
//fl.view.frame=CGRectMake(50.0,50.0, 300.0,300.0);
fl.delegate=self;
fl.modalTransitionStyle=UIModalTransitionStyleCrossDissolve;
fl.imageName=aCategoryDtl.Tip_Image;
[self presentModalViewController:fl animated:YES];
In above code, A Complete New View Controller is added to screen.
Instead of that, I need to display only single view(UIView) - Not View controller.(UIViewController)
How to implement that?
Thanks in advance for helping me.