您好,登錄后才能下訂單哦!
小編給大家分享一下iOS如何使用自帶的UIViewController實現(xiàn)qq加號下拉菜單功能,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
創(chuàng)建PopViewControlller
在tableview中創(chuàng)建一個tableview用于顯示菜單
//重置控制器的大小 -(CGSize)preferredContentSize{ if (self.popoverPresentationController != nil) { CGSize tempSize ; tempSize.height = self.view.frame.size.height; tempSize.width = 150; CGSize size = [_tableVIew sizeThatFits:tempSize]; return size; }else{ return [super preferredContentSize]; } }
在viewcontroller中需要使用到得地方添加類似的代碼
environmentView.addMenuCallBack = ^(UIButton *sender){ // 設(shè)置大小 weakPopView.preferredContentSize = CGSizeMake(120, 150); // 設(shè)置 Sytle weakPopView.modalPresentationStyle = UIModalPresentationPopover; // 需要通過 sourceView 來判斷位置的 weakPopView.popoverPresentationController.sourceView = sender; //可以指示小箭頭顏色 weakPopView.popoverPresentationController.backgroundColor = [UIColor whiteColor]; // 設(shè)置指示箭頭的位置 weakPopView.popoverPresentationController.sourceRect = CGRectMake(0, 0, sender.frame.size.width*3/4, sender.frame.size.height); // 箭頭方向 weakPopView.popoverPresentationController.permittedArrowDirections = UIPopoverArrowDirectionUp; // 設(shè)置代理 weakPopView.popoverPresentationController.delegate = weakSelf; [weakSelf presentViewController:weakPopView animated:YES completion:nil]; };
看完了這篇文章,相信你對“iOS如何使用自帶的UIViewController實現(xiàn)qq加號下拉菜單功能”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。