iOS iOS7以上設置leftBarButtonItem後滑動返回實效

pushViewController之後加入如下代碼:

[self.navigationController pushViewController:viewController animated:YES];

// 開啓iOS7的滑動返回效果

if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)])

{

    self.navigationController.interactivePopGestureRecognizer.delegate =nil;

}


原文鏈接:http://blog.csdn.net/zhaoxy_thu/article/details/15811189

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章