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];
Linux/UNIX系统编程手册
Michael Kerrisk / 孙剑 许从年 董健、孙余强 郭光伟 陈舸 / 人民邮电出版社 / 2014-1 / 158
《linux/unix系统编程手册(上、下册)》是介绍linux与unix编程接口的权威著作。linux编程资深专家michael kerrisk在书中详细描述了linux/unix系统编程所涉及的系统调用和库函数,并辅之以全面而清晰的代码示例。《linux/unix系统编程手册(上、下册)》涵盖了逾500个系统调用及库函数,并给出逾200个程序示例,另含88张表格和115幅示意图。 《li......一起来看看 《Linux/UNIX系统编程手册》 这本书的介绍吧!
