i ve got a tabbar in one of my views.when a button is clicked in the first tab.it opens a modal view.but the thing is it hides the tabbar bar.what i want is a resized modal view that doesnt hide the tabbar..is it anyway possible?..could you guys help me out.
part of the code
if (indexPath.row == 5) {
if (self.dvController6 == nil)
{
Vad_tycker *temp = [[Vad_tycker alloc] initWithNibName:@"Vad_tycker" bundle:[NSBundle mainBundle]];
self.dvController6 = temp;
[temp release];
}
[self presentModalViewController:self.dvController6 animated:YES];
}