這篇文章主要介紹IOS中MenuViewController如何實(shí)現(xiàn)彈出菜單效果,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
10年積累的成都網(wǎng)站制作、網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有秀洲免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
效果圖:
實(shí)現(xiàn)方式:將self.view當(dāng)前頁(yè)面縮小,在當(dāng)前頁(yè)的上面添加一個(gè)菜單的view,即在self.view.superview添加。
//顯示 - (void) show:(UIView*)parent { parentView = parent; //先隱藏backView,table backView.alpha = 0; _table.alpha = 0; //移動(dòng)table [_table setTransform:CGAffineTransformMakeTranslation(0, _table.frame.size.height)]; //父窗口添加本view,---這個(gè)會(huì)調(diào)用viewDidLoad [parentView.superview addSubview:self.view]; //添加動(dòng)畫,添加到父窗口中,使之從下移動(dòng)上 [UIView animateWithDuration:0.3 animations:^{ //父窗口縮小 CGAffineTransform t = CGAffineTransformMakeScale(0.9, 0.9); [parentView setTransform:t]; //顯示backview,table backView.alpha = 1; _table.alpha = 1; //移動(dòng)table,CGAffineTransformIdentity還原原始坐標(biāo) [_table setTransform:CGAffineTransformIdentity]; } completion:^(BOOL finished) { }]; } //隱藏 - (void) hide { //添加動(dòng)畫,添加到父窗口中,使之從下移動(dòng)上 [UIView animateWithDuration:0.3 animations:^{ //父窗口還原 CGAffineTransform t = CGAffineTransformIdentity; [parentView setTransform:t]; //顯示backview,table backView.alpha = 0; _table.alpha = 0; //移動(dòng)table [_table setTransform:CGAffineTransformMakeTranslation(0, _table.frame.size.height)]; } completion:^(BOOL finished) { [self.view removeFromSuperview]; }]; } - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor clearColor]; //背影黑罩 backView = [[UIView alloc]initWithFrame:self.view.bounds]; backView.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.3]; [self.view addSubview:backView]; //算出table的CGRect CGRect rect = self.view.bounds; int height = _titleArray.count * 44; rect.origin.y = rect.size.height - height; rect.size.height = height; _table = [[UITableView alloc]initWithFrame:rect]; _table.delegate = self; _table.dataSource = self; [self.view addSubview:_table]; }
這個(gè)菜單你可以任意自定義,我這里是一個(gè)tableView,你可以寫一些有圖和文字的添加上去。只需要把源代碼稍改,就ok!
以上是“IOS中MenuViewController如何實(shí)現(xiàn)彈出菜單效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
本文名稱:IOS中MenuViewController如何實(shí)現(xiàn)彈出菜單效果
分享URL:http://jinyejixie.com/article20/pdcgco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、網(wǎng)站營(yíng)銷、網(wǎng)站設(shè)計(jì)、做網(wǎng)站、Google、響應(yīng)式網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)