朋友,
我需要在不同标题的四到五个视图之间切换
有四个视图示例设置连接打开交易关闭交易
这些是我想在点击的四个页面之间导航的标题
例如,当我类似地点击所有其他视图时,我想切换到设置视图,但这些按钮必须在所有视图中
但我只需要一个视图中的这些按钮。当我选择时,它应该切换到其他视图
根据四个视图对内容的要求,我建议为分段控件制作一个主视图,并在主视图中设置四个容器视图。它们中的三个应该被隐藏,然后你可以在四个视图之间切换(显示/隐藏(。
只有当视图的代码非常"软",或者同时运行4-5个视图会非常慢时,这才是一个好的解决方案。如果是四个核心视图,我更喜欢使用标准的导航选项卡栏控件。。
////////示例///////
设置将使用一个UIViewController作为背景。在此视图中,我们将放置一个UISegmentedControl+四个容器视图。四个容器视图应放置在彼此的顶部。这三个容器视图是隐藏的,因此您只能看到一个。
BackgroundViewController.h:
#import <UIKit/UIKit.h>
@interface BackgroundViewController : UIViewController {
IBOutlet UISegmentedControl *segmentedControl;
UIView actualView;
}
@property (nonatomic, weak) IBOutlet UIView *containerOne;
@property (nonatomic, weak) IBOutlet UIView *containerTwo;
@property (nonatomic, weak) IBOutlet UIView *containerThree;
@property (nonatomic, weak) IBOutlet UIView *containerFour;
@end
下面是分段控件的IBAction示例。
- (void) viewDidLoad {
actualView = self.containerOne;
UIView *fromView = nil;
UIView *toView = nil;
self.containerOne.hidden = NO;
self.containerTwo.hidden = YES;
self.containerThree.hidden = YES;
self.containerFour.hidden = YES;
}
- (IBAction)segmentSwitchClick {
NSInteger selectedSegment = segmentedControl.selectedSegmentIndex;
UIView *fromView = actualView;
UIView *toView = nil;
switch (selectedSegment) {
case 0: {
toView = [self containerOne];
break;
}
case 1: {
toView = [self containerTwo];
break;
}
case 2: {
toView = [self containerThree];
break;
}
case 3: {
toView = [self containerFour];
break;
}
default:
break;
}
}
[UIView transitionFromView:fromView toView:toView duration:1.9 options:UIViewAnimationOptionShowHideTransitionViews | UIViewAnimationOptionCurveLinear
completion:^(BOOL finished) {
if (finished) {
actualView = toView;
}
}];
}
附言:我还没试过,但应该有效。
在主内容视图中添加分段控件。然后将其他视图添加为分段控件下的子视图。(设置子视图的框架,以使视图不与分段控件重叠(然后为每个子视图设置IBOutlet。分段控件的实际方法基于分段控件选择的索引显示和隐藏子视图。当需要显示视图时,请隐藏其他子视图。
这是一个简单的直接解决方案
以下是在视图控制器(未测试(的超级视图上添加3个视图的示例代码
CGRect frame = CGRectMake(x, y, width, height); // Replacing with your dimensions
UIView *view1 = [[UIView alloc] initWithFrame:frame];
UIView *view2 = [[UIView alloc] initWithFrame:frame];
UIView *view3 = [[UIView alloc] initWithFrame:frame];
Then, you want to actually add it to the superview (assuming the view is self.view)
[self.view addSubview:view1];
[self.view addSubview:view2];
[self.view addSubview:view3];