真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS如何導(dǎo)航欄無縫圓滑的隱藏Navigationbar-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)iOS如何導(dǎo)航欄無縫圓滑的隱藏Navigationbar,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)金灣,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792

1.ViewController

.m

- (void)viewDidLoad {
 [super viewDidLoad];
 self.title = @"隱藏導(dǎo)航欄";
 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
 button.backgroundColor = [UIColor lightGrayColor];
 button.frame = CGRectMake(10, 100, 60, 30);
 [button addTarget:self action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside];
 [self.view addSubview:button];
 self.navigationController.delegate = self;
}
- (void)buttonClick{
 ///跳轉(zhuǎn)到KKViewController
 [self performSegueWithIdentifier:@"pusht" sender:nil];
}

頭部代理

@interface ViewController ()

代理方法

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
 [self.navigationController setNavigationBarHidden: [self hiddenBarVc: viewController] animated: animated];
}
- (BOOL)hiddenBarVc:(UIViewController *)viewController {
 BOOL needHideNaivgaionBar = NO;
 if ([viewController isKindOfClass: [KKViewController class]]) {
 needHideNaivgaionBar = YES;
 }
 return needHideNaivgaionBar;
}

2.KKViewController(目標(biāo)ViewController)

新建一個(gè)KKViewController

.h

@property (nonatomic,strong) id popDelegate;

.m

- (void)viewDidLoad {
 [super viewDidLoad];
 self.title = @"第二個(gè)頁面";
 [self popSet];
}
- (void)popSet{
 _popDelegate = self.navigationController.interactivePopGestureRecognizer.delegate;
 SEL action = NSSelectorFromString(@"handleNavigationTransition:");
 UIPanGestureRecognizer *popPanGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self.popDelegate action:action];
 popPanGesture.maximumNumberOfTouches = 1;
 popPanGesture.delegate = self;
 [self.view addGestureRecognizer: popPanGesture];
}

頭部代理

@interface KKViewController ()

手勢(shì)代理方法

- (BOOL)gestureRecognizerShouldBegin:(UIPanGestureRecognizer *)gestureRecognizer{
 ///【下面兩個(gè)方法寫一個(gè)】
 ///全屏拖動(dòng)
 CGPoint tragPoint = [gestureRecognizer translationInView:gestureRecognizer.view];
 if (tragPoint.x <= 0){
  return NO;
 }
 else{
  if (self.navigationController.viewControllers.count <= 1){
   return NO;
  }
  else{
   return YES;
  }
 }
// ///局部允許拖動(dòng)
// CGPoint tragPoint = [gestureRecognizer locationInView:gestureRecognizer.view];
// NSLog(@"x=%f;y=%f",tragPoint.x,tragPoint.y);
// if (tragPoint.x > 60){///拖動(dòng)的范圍
//  return NO;
// }
// else{
//  if (self.navigationController.viewControllers.count <= 1) {
//   return NO;
//  }
//  else{
//   return YES;
//  }
// }
}

效果圖

iOS如何導(dǎo)航欄無縫圓滑的隱藏Navigationbar

關(guān)于“iOS如何導(dǎo)航欄無縫圓滑的隱藏Navigationbar”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


文章題目:iOS如何導(dǎo)航欄無縫圓滑的隱藏Navigationbar-創(chuàng)新互聯(lián)
文章路徑:http://weahome.cn/article/podsj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部