使用分段控制在ios中切换视图之间的视图

时间:2015-05-25 10:04:37

标签: ios xcode4.2 uisegmentedcontrol segmentedcontrol

朋友,

我需要在不同标题的四到五个视图之间切换

有四个视图示例设置连接打开交易关闭交易

这些是我想在四个页面之间导航的标题,我点击了

例如,我想切换到设置视图,当我点击它时所有其他视图,但这些按钮必须在所有视图中

但我只需要一个视图中的这些按钮。虽然我选择它应该切换到其他视图

2 个答案:

答案 0 :(得分:1)

根据内容四个视图的要求,我建议为分段控件制作一个主视图,并在主视图中设置四个容器视图。其中三个应隐藏,然后您可以在四个视图之间切换(显示/隐藏)。

如果视图的代码非常“软”,或者同时运行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;
                    }
                }];

}

PS我没试过,但应该可以。

答案 1 :(得分:1)

在主内容视图中添加分段控件。 然后在分段控件下添加其他视图作为子视图。 (设置子视图的框架以使视图不与分段控件重叠) 然后为每个子视图设置IBOutlet。在分段控制的动作方法中,基于分段控制选择索引显示和隐藏子视图。 当您需要显示视图时,隐藏其他子视图。

这是一个简单的直接解决方案

下面是在viewcontroller(未测试)的超级视图上添加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];