So, I'm trying to create a search that returns a bunch of results in a UITableView. When the user selects one of the cells, I want to impose a detailed view of this result in a beautiful, compressed window. This view should have text, buttons, and a photo. I was looking to crack vigilance, but I read that, as a rule, I frowned. I also looked at the HeadsUpUI example in the iphone SDK, but that didn’t do exactly what I wanted. Does anyone have examples of how to overlay a custom view over a tableView? Any help would be greatly appreciated ...
I also tried doing something like this without any 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 the rest of the view, it will be awesome. Any ideas? Thanks in advance!
source share