Completion handler for UINavigationController quot;pushViewController:animatedquot;?(UINavigationController“pushViewController:animated的完成处理程序?)
问题描述
我打算使用 UINavigationController 创建一个应用程序来展示下一个视图控制器.在 iOS5 中,有一种新的方法来呈现 UIViewControllers:
I'm about creating an app using a UINavigationController to present the next view controllers.
With iOS5 there´s a new method to presenting UIViewControllers:
presentViewController:animated:completion:
现在我问我为什么没有 UINavigationController 的完成处理程序?只有
Now I ask me why isn´t there a completion handler for UINavigationController?
There are just
pushViewController:animated:
是否可以像新的 presentViewController:animated:completion: 那样创建我自己的完成处理程序?
Is it possible to create my own completion handler like the new presentViewController:animated:completion: ?
推荐答案
请参阅 par's answer 了解另一个和更多最新解决方案
See par's answer for another and more up to date solution
UINavigationController 动画使用 CoreAnimation 运行,因此将代码封装在 CATransaction 中并设置完成块是有意义的.
UINavigationController animations are run with CoreAnimation, so it would make sense to encapsulate the code within CATransaction and thus set a completion block.
斯威夫特:
为了快速,我建议创建一个这样的扩展
For swift I suggest creating an extension as such
extension UINavigationController {
public func pushViewController(viewController: UIViewController,
animated: Bool,
completion: @escaping (() -> Void)?) {
CATransaction.begin()
CATransaction.setCompletionBlock(completion)
pushViewController(viewController, animated: animated)
CATransaction.commit()
}
}
用法:
navigationController?.pushViewController(vc, animated: true) {
// Animation done
}
Objective-C
标题:
#import <UIKit/UIKit.h>
@interface UINavigationController (CompletionHandler)
- (void)completionhandler_pushViewController:(UIViewController *)viewController
animated:(BOOL)animated
completion:(void (^)(void))completion;
@end
实施:
#import "UINavigationController+CompletionHandler.h"
#import <QuartzCore/QuartzCore.h>
@implementation UINavigationController (CompletionHandler)
- (void)completionhandler_pushViewController:(UIViewController *)viewController
animated:(BOOL)animated
completion:(void (^)(void))completion
{
[CATransaction begin];
[CATransaction setCompletionBlock:completion];
[self pushViewController:viewController animated:animated];
[CATransaction commit];
}
@end
这篇关于UINavigationController“pushViewController:animated"的完成处理程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UINavigationController“pushViewController:animated"的完成处理程序?
基础教程推荐
- AdMob 广告未在模拟器中显示 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
