侧滑

作者: 法库德 | 来源:发表于2017-10-25 19:23 被阅读0次

#import "LeftViewController.h"

#import "UIViewController+CWLateralSlide.h"

[super viewDidLoad];

UIBarButtonItem *bu=[[UIBarButtonItem alloc]initWithTitle:@"左" style:UIBarButtonItemStylePlain target:self action:@selector(fan)];

self.navigationItem.leftBarButtonItem=bu;

}

-(void)fan

{

// 自己随心所欲创建的一个控制器

LeftViewController *vc = [[LeftViewController alloc] init];

// 调用这个方法

[self cw_presentViewController:vc configuration:CWDrawerTransitionDirectionLeft];

}

相关文章

网友评论

      本文标题:侧滑

      本文链接:https://www.haomeiwen.com/subject/wxrcpxtx.html