LGSemiModalNavController
- 授权协议: MIT
- 开发语言: Objective-C SHELL
- 操作系统: iOS
- 软件首页: https://github.com/lukegeiger/LGSemiModalNavController
软件介绍
LGSemiModalNavController 是一个 UINavigationController 的子类,使用 UIViewControllerAnimatedTransitioning 协议,在视图控件显示自身的动态量。
示例:
//This is an example. LGViewController *lgVC = [[LGViewController alloc]initWithFormat:LGViewControllerFormatGoBack]; //This is the nav controller LGSemiModalNavViewController *semiModal = [[LGSemiModalNavViewController alloc]initWithRootViewController:lgVC]; //Make sure to set a height on the view controller here. semiModal.view.frame = CGRectMake(0, 0, self.view.frame.size.width, 400); //Selected customization properties, see more in the header of the LGSemiModalNavViewController semiModal.backgroundShadeColor = [UIColor blackColor]; semiModal.animationSpeed = 0.35f; semiModal.tapDismissEnabled = YES; semiModal.backgroundShadeAlpha = 0.4; semiModal.scaleTransform = CGAffineTransformMakeScale(.94, .94); [self presentViewController:semiModal animated:YES completion:nil];
Windows内核原理与实现
潘爱民 / 电子工业出版社 / 2010年4月 / 99.00元
本书从操作系统原理的角度,详细解析了Windows如何实现现代操作系统的各个关键部件,包括进程、线程、物理内存和虚拟内存的管理,Windows中的同步和并发性支持,以及Windows的I/O模型。在介绍这些关键部件时,本书直接以Windows的源代码(WRK, Windows Research Kernel)为参照,因而读者可以了解像Windows这样的复杂操作系统是如何在x86处理器上运行的。 ......一起来看看 《Windows内核原理与实现》 这本书的介绍吧!
