Hello stackoverflow,
So I am trying to create a search that returns a bunch of results to a UITableView. When the user selects one of the cells, I want to overlay a detail view of that result in a nice, concise window. This view needs to have some text, buttons and a photo. I was looking into hacking an alertview but read that that is generally frowned upon. I also looked at the HeadsUpUI example in the iphone SDK, but that didn't do exactly what I wanted. Does anyone have any examples how to overlay a custom view on top of a tableView? Any help would be greatly appreciated...
I have also tried doing something like this with no luck:
CGRect newSize = CGRectMake(0.0f ,0.0f, 320.f, 400.0f);
UIView *newView = [[UIView alloc] initWithFrame:newSize];
[tableView addSubview:newView];
[tableView bringSubviewToFront:newView];
[newView release];
Also, if there is any way to blur out the rest of the view, that would be awesome. Any ideas? Thanks in advance!