tags:

views:

833

answers:

2
A: 

Instead of the alert, you could create your view and add it to the current view:

UIView *newView = [[UIView alloc] initWithFrame:CGRectMake(100,100,100,100)];
[self.view addSubview:newView];
[newView release];
Brad Smith
Replacing the alert with creating a new view does not work.
iPhone Guy
A: 

It has been a while since I asked this question -- and I figured it out a while ago.... I was missing the navigation controller to do a push of a view controller. In other words, create the view controller then push the view using a navigation controller. If anyone is reading this and needs sample code, post against the question and I will post the sample code...

iPhone Guy