• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 如何设置容器 View 以交换两个 child

[复制链接]
菜鸟教程小白 发表于 2022-12-12 23:58:19 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在 iOS 中遇到了一个典型的容器 View 问题。我有一个带有两个 subview 的 ViewController:一个 UISegmentedControl 和一个容器 View 。现在已经将我的容器 View 放置在 Storyboard 中,我不知道如何继续。自然地,我认为我的下一步是继承 UIContainerView 来完成我在 iOS 文档中阅读的所有内容。但是没有UIContainerView这样的类。所以现在,除了我能够在 Storyboard中放置的内容之外,我被卡住了。希望有人可以帮助我,我会假设一个看似简单的场景。

想象一下:

  • 一个带有两个按钮(Cat、Dog)和一个 ContainerView 的 ViewController。
  • 当用户点击 catButton 时,ContainerView 应该显示 CatViewController(对于 dogButton 也是如此)
  • 我已经设置了 Storyboard 的图像。
  • 为简单起见,让 CatViewController 包含一个带有单词 CAT 的 UILabel(DogViewController 也是如此)。
  • 另外,在 Storyboard中,我已经创建了 CatViewController 和 DogViewController 作为两个独立的、无法访问的 View Controller 。

那么在这一点上,我该如何进行?既然不能继承 UIContainerView 这样的类,我该怎么办?

我相信这个场景很简单,有人可以提供一个示例,但如果您认为它太复杂,请提供一个更简单的场景示例。我只是想看看一个简单的是怎么做的。

附:我已经在 StackOverflow 上游览过这里,例如:

Swapping child views in a container view

我已经阅读了 https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/CreatingCustomContainerViewControllers/CreatingCustomContainerViewControllers.html#//apple_ref/doc/uid/TP40007457-CH18-SW6 上的文档



Best Answer-推荐答案


enter image description here

我认为最好使用一个 UISegmentedControl 而不是两个 UIButton。 容器 View subview (_vwContainer.subviews) 最初包含自动实例化的 CatViewController 的 View 。

//  ViewController.m
#import "ViewController.h"

@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIView *vwContainer;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    _vwContainer.clipsToBounds = YES;
}

- (IBAction)onSegmentValueChangedUISegmentedControl *)sender {
    NSLog(@"Value changed to: %zd",sender.selectedSegmentIndex);
    NSLog(@"BEFORE: self.childViewControllers: %@",self.childViewControllers);
    NSLog(@"BEFORE: _vwContainer.subviews: %@",_vwContainer.subviews);

    // set oldVC & newVC
    UIViewController *oldVC = self.childViewControllers.firstObject;
    NSString *strIdNewVC;
    switch (sender.selectedSegmentIndex) {
        case 0:    strIdNewVC = @"catVC";   break;
        default:   strIdNewVC = @"dogVC";
    }
    UIViewController *newVC = [self.storyboard instantiateViewControllerWithIdentifier:strIdNewVC];

    //
    [oldVC willMoveToParentViewController:nil];
    [self addChildViewController:newVC];

    // Prepare animation transition, for example left to right
    newVC.view.frame = oldVC.view.frame;
    CGPoint pntEnd = oldVC.view.center;
    CGPoint pntInit = pntEnd;
    pntInit.x += oldVC.view.frame.size.width;
    newVC.view.center = pntInit;

    [self transitionFromViewControllerldVC toViewController:newVC
                              duration:0.25 options:0
                            animations:^{

                                newVC.view.center = pntEnd;

                              } completion:^(BOOL finished) {
                                  [oldVC removeFromParentViewController];
                                  [newVC didMoveToParentViewController:self];
                                  NSLog(@"AFTER: self.childViewControllers: %@",self.childViewControllers);
                                  NSLog(@"AFTER: _vwContainer.subviews: %@",_vwContainer.subviews);
                              }];
}

@end

关于ios - 如何设置容器 View 以交换两个 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24900207/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap