Hi,
In my current Ipad app, I have a split screen view in which the detail view is a scroll view containing 4 table views. The functionality I was trying to achive was that when I click any row of the table in the scroll view, a screen is show containing additional information and I used presentModalViewController to try to get this functionality.
The problem I am having is that the view does show up when the table row is clicked, but it comes up behind my scroll view because I can see a part of the view at the sides of my scroll view...
This is what I did,
Would anyone be able to tell me what I am doing wrong and How I can correct it?
In my current Ipad app, I have a split screen view in which the detail view is a scroll view containing 4 table views. The functionality I was trying to achive was that when I click any row of the table in the scroll view, a screen is show containing additional information and I used presentModalViewController to try to get this functionality.
The problem I am having is that the view does show up when the table row is clicked, but it comes up behind my scroll view because I can see a part of the view at the sides of my scroll view...
This is what I did,
Code:
PopOverControllerContents *popContents =
[[PopOverControllerContents alloc]
initWithNibName:@"PopOverControllerContents"
bundle:[NSBundle mainBundle]];
[self presentModalViewController:popContents animated:YES];
Would anyone be able to tell me what I am doing wrong and How I can correct it?