欢迎光临
我们一直在努力

yi’j导入多个控制器,通过顶部选择菜单切换控制器,实现….

建站超值云服务器,限时71元/月

yi'j导入多个控制器,通过顶部选择菜单切换控制器,实现....

项目介绍:

ZWTopSelectVcView

https://github.com/liunianhuaguoyanxi/ZWTopSelectVcView

It’s an so easy way to add your all kinds of childControllers into superViewController, then you can slide around or just click on the topButton which is automatically building in the topView to switch your childViewController.

快速导入多个控制器,通过顶部选择菜单切换控制器,实现一个页面多个控制器切换处理.

How to use:

Import the header file(设置头文件)

#import "ZWTopSelectButton.h"
#import "ZWTopSelectVcView.h"

1.To initialize the ZWTopSelectVcView (初始化)

ZWTopSelectVcView *topSelectVcView=[[ZWTopSelectVcView alloc]init];
topSelectVcView.frame=self.view.frame;
[self.view addSubview:topSelectVcView];
self.topSelectVcView=topSelectVcView;

2.Set the delegate of ZWTopSelectVcView(设置代理)

self.topSelectVcView.delegate=self;

3.Start drawing the UI (开始绘制UI)

[self.topSelectVcView setupZWTopSelectVcViewUI];

To implement proxy(Have to do)(一步导入你的各种控制器)

-(NSMutableArray )totalControllerInZWTopSelectVcView:(ZWTopSelectVcView )topSelectVcView
{

NSMutableArray *controllerMutableArr=[NSMutableArray array];

[controllerMutableArr addObject:[[OneTableViewController alloc]init]];
[controllerMutableArr addObject:[[TwoViewController alloc]init]];
[controllerMutableArr addObject:[[ThreeTableViewController alloc]init]];
[controllerMutableArr addObject:[[FourViewController alloc]init]];

return controllerMutableArr;

}

Show What it is

image

Show one of the custom sizes

image

Show one controller can have multiple ZWTopSelectVcView

image

Show some of the effects about switching

image

image

image

image

image

image

The specific content about it is in the demo(具体设置详情在demo中)

If you have any questions, please send the email to liunianhuaguoyanxi@Gmail.com or liunianhuaguoyanxi@163.com

code4app

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » yi’j导入多个控制器,通过顶部选择菜单切换控制器,实现….
分享到: 更多 (0)