[翻译] GTAppMenuController

本文介绍了如何使用GTAppMenuController库实现类似于Facebook Paper应用的全屏菜单效果,包括如何在主视图和菜单视图之间切换,以及如何在选择细胞后将应用推送到其他视图。提供了关键代码片段和实现步骤。

GTAppMenuController

https://github.com/gianlucatursi/GTAppMenuController

This is a simple project inspired by Paper application of Facebook.

这是一个很简单的工程,其效果来自于Facebook的Paper应用。

Trying Paper Facebook I am impressed by this seemingly Menu where the application appears in full screen, and then if you open the menu appears in the Status Bar.

试了下Paper的Facebook,我喜欢种整个菜单都在屏幕上显示的那个效果,通过从Status Bar下拉显示出来

How To Use - 如何使用

This is the most import piece of code: 以下是最为重要的代码:

    GTBackViewController *_back = [str instantiateViewControllerWithIdentifier:@"back"];

    self.backWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.backWindow.rootViewController = _back;
    [self.backWindow makeKeyAndVisible];

    GTAppMenuController *_front = [str instantiateViewControllerWithIdentifier:@"front"];
    self.frontWindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.frontWindow.rootViewController = _front;
    self.frontWindow.windowLevel = UIWindowLevelStatusBar;
    [self.frontWindow makeKeyAndVisible];

GTBackViewController is the UITableViewController with the cells. 

GTBackViewController 是UITableViewController以及其cell的组合

GTAppMenuController is a UINavigationController(Why? i don't know, I thought it was better to use a navigation controller) and this is the purple view that captures the event of swipe.

GTAppMenuController 是一个UINavigationController(为什么?我也不知道,我想也许用导航栏控制器更合适)以及上图中的紫色的那个附带有swipe手势的view

It just needs some help from you guys. After that, here's my list:

当然,你也需要干些事情,以下是你需要做的事情:

  • When select a UITableViewCell push to other View (like Paper) 当选择了一个cell,push到其他view去
  • Testing 测试

 

转载于:https://www.cnblogs.com/YouXianMing/p/4008584.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值