modalviews

Iphone SDK dismissing Modal ViewControllers on ipad by clicking outside of it

Hello, I want to dismiss a FormSheetPresentation modal view controller when the user taps outside the modal view...I have seen a bunch of apps doing this (ebay on ipad for example) but i cant figure out how since the underneath views are disabled from touches when modal views are displayed like this (are they presenting it as a popover ...

iPhone SDK - keep data in modal view

Hi all, I've got a modal view loaded the following way: ModalViewController *modalController = [[ModalViewController alloc] initWithNibName:@"ModalViewController" bundle:nil]; searchController.delegate = self; [self.navigationController presentModalViewController:modalController animated:YES]; [modalController release]; When the mod...

Is it HIG compliant to have a modalView below an UITabBar

Hello everyone, I'm working on this App and I had to do a bit deep view hierarchy to acchieve a correct flipView effect with an scrollView like this but I ended up with modalViews appearing bellow the tabBar like you can see on the picture. Is it HIG compliant? I read the Apple document and doesn't say anything about this particular effe...