导航栏一体化转场动画 JCCNavigationController
- 授权协议: MIT
- 开发语言: Swift
- 操作系统: iOS
- 软件首页: https://github.com/charsdavy/JCCNavigationController
- 软件文档: https://github.com/charsdavy/JCCNavigationController
- 官方下载: https://github.com/charsdavy/JCCNavigationController
软件介绍
JCCNavigationController
一种导航栏一体化转场动画效果
Usage
AppDelegate
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch.
self.window = UIWindow.init(frame: UIScreen.main.bounds) let dashboardController = IHSDashboardController.init()
self.window?.rootViewController = JCCNavigationController.init(rootViewController: self.dashboardController!)
self.window?.makeKeyAndVisible() return true}UITableView
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let detailViewController : IHSCookDetailViewController = IHSCookDetailViewController.init() self.jccNavigationController.pushViewController(viewController: detailViewController)
tableView.deselectRow(at: indexPath, animated: true)
}Data Structures and Algorithms
Alfred V. Aho、Jeffrey D. Ullman、John E. Hopcroft / Addison Wesley / 1983-1-11 / USD 74.20
The authors' treatment of data structures in Data Structures and Algorithms is unified by an informal notion of "abstract data types," allowing readers to compare different implementations of the same......一起来看看 《Data Structures and Algorithms》 这本书的介绍吧!
