sumitmundra / HYPanViewController

The ViewController that recreates the vvebo app UI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HYPanViewController

The ViewController that recreates the vvebo app UI.

image

Some ideas come from Udo .

###use

 __weak ViewController *weakSelf = self;
    HYPanGestureRecognizer *pan = [[HYPanGestureRecognizer alloc] initWithTabelView:_tableView Handler:^(BOOL isFinished, BOOL isLeft) {
        
        DetailViewController *detail = [[DetailViewController alloc] init];
        [weakSelf addChildViewController:detail];
        [weakSelf.view addSubview:detail.view];
        [detail didMoveToParentViewController:weakSelf];
    }];
    [pan addLeftText:@"comment" rightText:@"retweet"];
    [self.view addGestureRecognizer:pan];

About

The ViewController that recreates the vvebo app UI

License:MIT License


Languages

Language:Objective-C 100.0%