任何人都知道有关如何将分段控件放入 UIpopover 的任何链接/教程?one of the views has a scroll view and when the segment index is selected the scroll view appears on top of the rest of the popover and the segment cannot be selected
- (IBAction) segmentAction:(id)sender
{
UISegmentedControl* control = sender ;
if( [control selectedSegmentIndex] == 0 )
{
[ self.view addSubview:Firstview1] ;
}
if( [control selectedSegmentIndex] == 1 )
{
[scrollview1 setScrollEnabled:YES];
[scrollview1 setContentSize:CGSizeMake(320, 480)];
self->Secondview2=scrollview1;
[scrollview1 release];
[ self.view addSubview:Secondview2] ;
}
if( [control selectedSegmentIndex] == 2 )
{
[ self.view addSubview:Thirdview3] ;
}
}
建议将不胜感激