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
2009-07-17 05:04:24