我正在制作一个自定义的后退按钮,它的工作原理与真正的后退按钮完全一样。下面是我的代码
UIButton *cusBack = [UIButton buttonWithType:101];
[cusBack setTitle:@"Back" forState:UIControlStateNormal];
[cusBack addTarget:self action:@selector(clickBack) forControlEvents:UIControlEventTouchUpInside];
self.view addSubView:cusBack;
这是我的选择器:
-(void)clickBack{
PrevPage *pPage = [[PrevPage alloc] init];
[self.navigationController pushViewController:pPage animated:YES];
[pPage release];
}
实际上,它有效,但它创建的方向是从右到左。但我希望页面从左移到右,因为它会回到最近的页面
谢谢你!