i have a UIViewController that is only about 260px tall(or at least the area i want viewable is 260 approx. height) and really just has a picker on it and a done button. I'm calling presentModalViewController to display it but its showing the whole view, when really i only want to show the picker and the done button bar above the picker, not the black above the bar , is there a way to show only this and not the whole view behind the picker when it is presented ?
not too much for code here, ....
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:tipPickerController];
[self presentModalViewController:navigationController animated:YES];
let me know if i should post more code to get help, thanks