- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用类似于 UINavigationController 的东西,以便我可以自定义动画。首先,我只是使用 Apple 库存动画。这是我的 containerViewController:
- (void)loadView {
// Set up content view
CGRect frame = [[UIScreen mainScreen] bounds];
_containerView = [[UIView alloc] initWithFrame:frame];
_containerView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
self.view = _containerView;
}
- (id)initWithInitialViewController:(UIViewController *)vc {
self = [super init];
if (self) {
_currentViewController = vc;
[self addChildViewController:_currentViewController];
[self.view addSubview:_currentViewController.view];
[self didMoveToParentViewController:self];
_subViewControllers = [[NSMutableArray alloc] initWithObjects:_currentViewController, nil];
}
return self;
}
- (void)pushChildViewController:(UIViewController *)vc animation:(UIViewAnimationOptions)animation {
vc.view.frame = _containerView.frame;
[self addChildViewController:vc];
[self transitionFromViewController:_currentViewController toViewController:vc duration:0.3 options:animation animations:^{
}completion:^(BOOL finished) {
[self.view addSubview:vc.view];
[vc didMoveToParentViewController:self];
[self.subViewControllers addObject:vc];
}];
}
- (void)popChildViewController:(UIViewController *)vc WithAnimation:(UIViewAnimationOptions)animation {
// Check that there is a view controller to pop to
if ([self.subViewControllers count] <= 0) {
return;
}
NSInteger idx = [self.subViewControllers count] - 1;
UIViewController *toViewController = [_subViewControllers objectAtIndex:idx];
[vc willMoveToParentViewController:nil];
[self transitionFromViewController:vc toViewController:toViewController duration:0.3 options:animation animations:^{
}completion:^(BOOL finished) {
[vc.view removeFromSuperview];
[vc removeFromParentViewController];
[self didMoveToParentViewController:toViewController];
[self.subViewControllers removeObjectAtIndex:idx];
}];
}
我将这个 ContainerViewcontroller 作为窗口的 rootViewController。我可以添加我的初始 viewController 并推送一个 View Controller 。但是,当我尝试弹出时,我得到了
ContainerViewController[65240:c07] Unbalanced calls to begin/end appearance transitions for <SecondViewController: 0x8072130>.
我想知道我做错了什么。我认为我的 initialViewController 仍在 secondViewController 之下。有什么想法吗?谢谢!
最佳答案
我不知道这是否是导致您的问题的原因,但不应该:
[self didMoveToParentViewController:toViewController];
成为:
[toViewController didMoveToParentViewController:self];
此外,我不确定您在使用 subViewControllers 数组做什么。它似乎是 childViewControllers 数组的副本,它已经是 UIViewController 的属性。
还有一件事我不确定是否正确。在您的 pop 方法中,您的 toViewController 是 _subViewControllers 数组中的最后一个 Controller 。你不想倒数第二个吗?最后一个不应该是你弹出的那个吗?你正在弹出 vc,它是你传递给方法的 Controller ,我不明白。
这就是我制作类似 Controller 的导航方式。在它的包含行为中,它就像一个导航 Controller ,但没有导航栏,并允许不同的过渡动画:
@implementation ViewController
-(id)initWithRootViewController:(UIViewController *) rootVC {
if (self = [super init]) {
[self addChildViewController:rootVC];
rootVC.view.frame = self.view.bounds;
[self.view addSubview:rootVC.view];
}
return self;
}
-(void)pushViewController:(UIViewController *) vc animation:(UIViewAnimationOptions)animation {
vc.view.frame = self.view.bounds;
[self addChildViewController:vc];
[self transitionFromViewController:self.childViewControllers[self.childViewControllers.count -2] toViewController:vc duration:1 options:animation animations:nil
completion:^(BOOL finished) {
[vc didMoveToParentViewController:self];
NSLog(@"%@",self.childViewControllers);
}];
}
-(void)popViewControllerAnimation:(UIViewAnimationOptions)animation {
[self transitionFromViewController:self.childViewControllers.lastObject toViewController:self.childViewControllers[self.childViewControllers.count -2] duration:1 options:animation animations:nil
completion:^(BOOL finished) {
[self.childViewControllers.lastObject removeFromParentViewController];
NSLog(@"%@",self.childViewControllers);
}];
}
-(void)popToRootControllerAnimation:(UIViewAnimationOptions)animation {
[self transitionFromViewController:self.childViewControllers.lastObject toViewController:self.childViewControllers[0] duration:1 options:animation animations:nil
completion:^(BOOL finished) {
for (int i = self.childViewControllers.count -1; i>0; i--) {
[self.childViewControllers[i] removeFromParentViewController];
}
NSLog(@"%@",self.childViewControllers);
}];
}
编辑后:通过向 IB 中的所有 Controller (包括自定义容器 Controller )添加导航栏,我能够使用该 Controller 复制后退按钮功能。我向任何将被按下的 Controller 添加了一个条形按钮,并将它们的标题设置为 nil(如果我将标题保留为“项目”,我会遇到一些小故障)。删除该标题会使按钮消失(在 IB 中),但您仍然可以在场景列表中与它建立联系。我向其中添加了一个 IBOutlet,并添加了这段代码以获得我想要的功能:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
if (self.isMovingToParentViewController) {
self.backButton.title = [self.parentViewController.childViewControllers[self.parentViewController.childViewControllers.count -2] navigationItem].title;
}else{
self.backButton.title = [self.parentViewController.childViewControllers[self.parentViewController.childViewControllers.count -3] title];
}
}
我展示了两种访问标题的不同方法——在 IB 中,您可以为我在 else 子句中使用的 Controller 设置标题,或者您可以像我在 if 部分中那样使用 navigationItem 标题的条款。 else 子句中的“-3”是必需的,因为在调用 viewWillAppear 时,弹出的 Controller 仍在 childViewControllers 数组中。
关于ios - 何时调用 addChildViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13768458/
我对 Objective-C 和 iOS 还很陌生,而且我已经接受了别人编写的应用程序。我注意到一些让我震惊的事情,我认为我的问题与人们提出的关于 addChildViewController 的其他
我正在尝试使用类似于 UINavigationController 的东西,以便我可以自定义动画。首先,我只是使用 Apple 库存动画。这是我的 containerViewController: -
我是第一次涉足 iOS 开发,我必须做的第一件事就是实现 custom container view controller - 让我们称它为 SideBarViewController - 交换它显示
iOS 5引入自定义容器 View Controller 的概念,并提供类似 addChildViewController 的 API .问题:您能否将 View Controller 添加为 sub
使用 Storyboard,我试图在当前 View 之上覆盖一个 UIViewController。 在我的 FirstViewController 中,我导入了 SecondViewControll
灵感来自 Scott Sherwood tutorial我在 UIViewController 中有一个 UIView,它通过自定义 segues 对不同的 UItableviewController
我正在使用下面的代码将 View 添加为addChildViewController。 VideoListVC * videoListVC = [[VideoListVC alloc] initWit
我刚刚观看了 2011 年 WWDC 上有关“实现 UIViewController Containment”的演示 ( here's a link to the video ) 他们提到了将 vie
我在使用 addChildViewController 实现顶部栏(如导航 Controller 栏,但自定义)时遇到问题。我在 .xib 文件中创建了这个栏,并添加了具有正确自动布局约束的按钮和图像
我刚开始使用这种方法,所以我可能完全错了,所以这是我的代码: @property (nonatomic, weak) ConverterViewController *converterViewCon
我正在处理一些需要重构的代码。一个 View Controller 充当两个其他 View Controller 的容器,并将在它们之间交换,如下面的代码所示。 这可能不是最好的设计。可能不需要以这种
我知道在 iOS 中可以通过三种方式更改 View 1. [self addChildViewController:thirdViewController]; [contentView addSubv
这两种方法都将 View 添加为父 View 的 subview ,并且 View 可以接收事件。什么时候使用哪一个? 最佳答案 这完全取决于您希望如何管理新的 subview 。如果您希望新的 su
我正在制作示例项目来实现顶级菜单。 下面是项目结构。 TopMenu 是父 View ,其结构如下所示。 在 TopViewController 中,下面的 viewDidLoad 是我拥有的。 NS
有没有人遇到过这个?以下代码在 iOS 4 模拟器上运行时报告"is",但根据 Apple 文档,方法 addChildViewController 仅在 iOS 5 及更高版本上可用。这似乎不是正确
我想使用与 addChildViewController 相同的功能,但对于版本 4.3(addChildViewController 仅在版本 5 中可用)。提前致谢。 最佳答案 虽然不建议这样做,
我正在尝试重用 this AdMobViewController class 我按照实现示例中的描述应用了它,看起来它工作正常,但我的 View 向上移动并且它现在位于操作栏下方的标题。你能告诉我如何
我有一个 iPhone 应用程序,在手机上运行时运行良好,但在 iPad 上以兼容模式运行时启动时崩溃。我在我的项目中使用 iAd,特别是我正在使用 Bannerviewcontroller.h an
我在Apple上看到这个方法的描述 func addChildViewController(_ childController: UIViewController) This method is on
我有一个类似于模态视图 Controller 的东西,我需要在其他 View Controller 上方显示它。我没有使用常规模式 Controller 功能(presentViewControlle
我是一名优秀的程序员,十分优秀!