Anyone know any links/tutorials on how to put a segmented control in a 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] ;
}
}
Advice would be appreciated
first of all when you use segment control don't just add subviews in each segment because when you switch segments the subviews don't get removed .For the scroll view just change the content size .So the best way is that :-
}