总定义push,pop方向

来源:互联网 发布:php exec 异步执行 编辑:程序博客网 时间:2024/05/16 05:43


-(void) setUpBackBut{

    

    UIButton *backBut=[[UIButtonalloc]init];

    

    [backBut setImage:[UIImageimageNamed:@"navgationbar_back_but"]forState:UIControlStateNormal];

    

    [backBut sizeToFit];

    

    [backBut addTarget:selfaction:@selector(backBUtClicked)forControlEvents:UIControlEventTouchUpInside];

    

    self.navigationItem.leftBarButtonItem=[[UIBarButtonItemalloc]initWithCustomView:backBut];

}


-(void) backBUtClicked{

    

    CATransition *anim=[CATransitionanimation];

    

    anim.type=kCATransitionPush;

    

    anim.subtype=kCATransitionFromRight;

    

    [self.navigationController.view.layeraddAnimation:anim forKey:nil];

    

    [self.navigationControllerpopViewControllerAnimated:YES];

    

}

0 0
原创粉丝点击