模態(tài)視圖控制器使用經(jīng)驗(yàn)

iOS開發(fā)中經(jīng)常會用到模態(tài)彈框。我的經(jīng)驗(yàn)是用模態(tài)彈出視圖控制器葛圃,然后在控制器上自定義彈框的展示形式
我會先提出需求岛杀,然后通過代碼給出解決方案,最后解釋原理躯嫉。


提出需求

點(diǎn)擊自下而上按鈕彈出模態(tài)視圖,點(diǎn)擊漸隱漸現(xiàn)按鈕彈出模態(tài)視圖


Paste_Image.png

解決方案

我會把所有代碼寫在main.m文件中,以便于大家理解

Objective-C

完整代碼

#import <UIKit/UIKit.h>
#define SCREENWIDTH [UIScreen mainScreen].bounds.size.width

#pragma mark==========presentViewController
@interface PresentViewController : UIViewController
@end
@implementation PresentViewController
- (void)viewDidLoad{
    [super viewDidLoad];
    [self setupUI];
}
//模態(tài)視圖控制器UI搭建
- (void)setupUI{
    self.view.backgroundColor = [UIColor clearColor];
    
    UIView *blackBg = [[UIView alloc]initWithFrame:self.view.bounds];
    blackBg.backgroundColor = [UIColor blackColor];
    blackBg.alpha = 0.5;
    [self.view addSubview:blackBg];
    
    UILabel * bgView = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 300, 300)];
    bgView.center = CGPointMake(SCREENWIDTH * 0.5, 250);
    bgView.backgroundColor = [UIColor whiteColor];
    bgView.layer.cornerRadius = 8;
    bgView.layer.masksToBounds = YES;
    bgView.text = @"Hello 模態(tài)視圖";
    bgView.textAlignment = NSTextAlignmentCenter;
    [self.view addSubview:bgView];
    
    UIButton *sureBtn = [[UIButton alloc]initWithFrame:CGRectMake(0, 256, 300, 44)];
    sureBtn.backgroundColor = [UIColor blueColor];
    [sureBtn setTitle:@"Sure" forState:UIControlStateNormal];
    [sureBtn addTarget:self action:@selector(sureBtnTapped) forControlEvents:UIControlEventTouchUpInside];
    [bgView addSubview:sureBtn];
}
//確認(rèn)按鈕點(diǎn)擊
- (void)sureBtnTapped{
    [self dismissViewControllerAnimated:YES completion:nil];
}
//屏幕點(diǎn)擊
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [super touchesBegan:touches withEvent:event];
    [self dismissViewControllerAnimated:YES completion:nil];
}
@end

#pragma mark==========rootViewController
@interface RootViewController : UIViewController
@property (nonatomic, strong) UIButton *downToUpBtn;
@property (nonatomic, strong) UIButton *alphaBtn;
@end

@implementation RootViewController
- (void)viewDidLoad{
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor whiteColor];
    //自下而上按鈕
    self.downToUpBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    self.downToUpBtn.layer.cornerRadius = 8;
    self.downToUpBtn.backgroundColor = [UIColor blueColor];
    self.downToUpBtn.bounds = CGRectMake(0, 0, 99, 33);
    self.downToUpBtn.center = CGPointMake(SCREENWIDTH *0.5, 200);
    [self.downToUpBtn setTitle:@"自上而下" forState:UIControlStateNormal];
    [self.downToUpBtn addTarget:self action:@selector(downToUpBtnTapped) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:self.downToUpBtn];
    //漸隱漸現(xiàn)按鈕
    self.alphaBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    self.alphaBtn.layer.cornerRadius = 8;
    self.alphaBtn.backgroundColor = [UIColor redColor];
    self.alphaBtn.bounds = CGRectMake(0, 0, 99, 33);
    self.alphaBtn.center = CGPointMake(SCREENWIDTH *0.5, 273);
    [self.alphaBtn setTitle:@"漸隱漸現(xiàn)" forState:UIControlStateNormal];
    [self.alphaBtn addTarget:self action:@selector(alphaBtnBtnTapped) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:self.alphaBtn];
}

- (void)downToUpBtnTapped{
    PresentViewController *vc = [[PresentViewController alloc]init];
    //設(shè)置模態(tài)格式:自定義模態(tài)格式
    vc.modalPresentationStyle= UIModalPresentationCustom;
    //設(shè)置轉(zhuǎn)場動畫
    vc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
    [self presentViewController:vc animated:YES completion:nil];
}
- (void)alphaBtnBtnTapped{
    PresentViewController *vc = [[PresentViewController alloc]init];
    //設(shè)置模態(tài)格式:自定義模態(tài)格式
    vc.modalPresentationStyle= UIModalPresentationCustom;
    //設(shè)置轉(zhuǎn)場動畫
    vc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    [self presentViewController:vc animated:YES completion:nil];
}
@end

#pragma mark==========自定義Delegate
@interface PresentAppDelegate : NSObject <UIApplicationDelegate>
@property (nonatomic, strong) UIWindow *window;
@end
@implementation PresentAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    self.window.tintColor = [UIColor whiteColor];
    //設(shè)置根控制器
    self.window.rootViewController = [[RootViewController alloc]init];
    [self.window makeKeyAndVisible];
    return YES;
}

@end
#pragma mark==========程序入口
int main(int argc, char * argv[]) {
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([PresentAppDelegate class]));
    }
}

Objective-C 效果

4.gif

Swift版

import UIKit

class PresentViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        self.view.backgroundColor = UIColor.clearColor()
        self.modalPresentationStyle = .Custom
        
        let blackBg:UIView! = UIView()
        blackBg.backgroundColor = UIColor.blackColor()
        blackBg.alpha = 0.5
        blackBg.frame = self.view.bounds
        self.view.addSubview(blackBg)
        
        let contentView:UILabel! = UILabel()
        contentView.backgroundColor = UIColor.whiteColor()
        contentView.frame = CGRectMake(0, 0,  UIScreen.mainScreen().bounds.size.width-80, UIScreen.mainScreen().bounds.size.width-80)
        contentView.center = self.view.center
        contentView.layer.cornerRadius = 8
        contentView.layer.masksToBounds = true
        contentView.textAlignment = .Center
        contentView.text = "Hello 模態(tài)視圖(swift)"
        self.view.addSubview(contentView)
    }
    
    override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
        self.dismissViewControllerAnimated(true) { 
            
        };
    }
}

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        self.setupUI()
    }
    
    func setupUI() {
        self.view.backgroundColor = UIColor.yellowColor()
        
        let titleLabel:UILabel! = UILabel.init(frame: CGRectMake(0, 20, UIScreen.mainScreen().bounds.size.width, 40))
        titleLabel.textAlignment = .Center
        titleLabel.text = "模態(tài)視圖"
        self.view.addSubview(titleLabel)
        
        var titles:[String] = ["Vertical","Horizontal","CrossDissolve","PartialCurl"];
        for var i in 0...3 {
            let modalBtn:UIButton! = UIButton.init(type:.Custom)
            modalBtn.bounds = CGRectMake(0, 0, 132, 44)
            modalBtn.center = CGPointMake(UIScreen.mainScreen().bounds.size.width*0.5, 150+60*CGFloat(i))
            modalBtn.backgroundColor = UIColor.blueColor()
            modalBtn.tag = i
            modalBtn.setTitle(titles[i], forState: .Normal)
            modalBtn.addTarget(self, action: #selector(modalBtnTapped), forControlEvents: .TouchUpInside)
            modalBtn.layer.cornerRadius = 8
            self.view.addSubview(modalBtn)
        }
    }
    
    func modalBtnTapped(var btn:UIButton!)  {
        print(btn.tag)
        let vc : PresentViewController = PresentViewController()
        vc.modalTransitionStyle =  UIModalTransitionStyle(rawValue: btn.tag)!;
        vc.modalPresentationStyle =  .Custom
        if btn.tag == 3 {
            vc.modalPresentationStyle = .FullScreen
        }
        self.presentViewController(vc, animated: true) { 
            
        }
    }
}

效果swift版本

6.gif

關(guān)鍵點(diǎn)

  • 設(shè)置模態(tài)格式:自定義模態(tài)格式
//模態(tài)彈出只有是Custom時(shí)候才有背景透明的效果
vc.modalPresentationStyle= UIModalPresentationCustom;
  • 設(shè)置模態(tài)轉(zhuǎn)場動畫
vc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;

模態(tài)轉(zhuǎn)場動畫

typedef NS_ENUM(NSInteger, UIModalTransitionStyle) {
    UIModalTransitionStyleCoverVertical = 0,
    UIModalTransitionStyleFlipHorizontal __TVOS_PROHIBITED,
    UIModalTransitionStyleCrossDissolve,
    //這個(gè)是翻頁效果,模態(tài)格式必須是FullScreen,而且背景無法透明
    UIModalTransitionStylePartialCurl NS_ENUM_AVAILABLE_IOS(3_2) __TVOS_PROHIBITED,
};
5.gif

背景透明

    self.view.backgroundColor = [UIColor clearColor];
    //設(shè)置模態(tài)格式:自定義模態(tài)格式,這個(gè)很關(guān)鍵闸盔,不然不透明
    self.modalPresentationStyle = UIModalPresentationCustom;
    //黑色透明背景
    UIView *blackBg = [[UIView alloc]initWithFrame:self.view.bounds];
    blackBg.backgroundColor = [UIColor blackColor];
    blackBg.alpha = 0.5;
    [self.view addSubview:blackBg];
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市才避,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌氨距,老刑警劉巖桑逝,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異俏让,居然都是意外死亡楞遏,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進(jìn)店門首昔,熙熙樓的掌柜王于貴愁眉苦臉地迎上來寡喝,“玉大人,你說我怎么就攤上這事勒奇≡蓿” “怎么了?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵赊颠,是天一觀的道長珊皿。 經(jīng)常有香客問我,道長巨税,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任粉臊,我火速辦了婚禮草添,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘扼仲。我一直安慰自己远寸,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布屠凶。 她就那樣靜靜地躺著驰后,像睡著了一般。 火紅的嫁衣襯著肌膚如雪矗愧。 梳的紋絲不亂的頭發(fā)上灶芝,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼夜涕。 笑死犯犁,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的女器。 我是一名探鬼主播酸役,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼驾胆!你這毒婦竟也來了涣澡?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤丧诺,失蹤者是張志新(化名)和其女友劉穎入桂,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體锅必,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡事格,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了搞隐。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驹愚。...
    茶點(diǎn)故事閱讀 38,814評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖劣纲,靈堂內(nèi)的尸體忽然破棺而出逢捺,到底是詐尸還是另有隱情,我是刑警寧澤癞季,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布劫瞳,位于F島的核電站,受9級特大地震影響绷柒,放射性物質(zhì)發(fā)生泄漏志于。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一废睦、第九天 我趴在偏房一處隱蔽的房頂上張望伺绽。 院中可真熱鬧,春花似錦嗜湃、人聲如沸奈应。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽杖挣。三九已至,卻和暖如春刚陡,著一層夾襖步出監(jiān)牢的瞬間惩妇,已是汗流浹背株汉。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留屿附,地道東北人郎逃。 一個(gè)月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像挺份,于是被迫代替她去往敵國和親褒翰。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評論 2 351

推薦閱讀更多精彩內(nèi)容

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫匀泊、插件优训、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,066評論 4 62
  • 翻譯自“View Controller Programming Guide for iOS”。 1 彈出視圖控制器...
    lakerszhy閱讀 3,493評論 2 20
  • 0 賴冠霖趁著哥哥們都睡著了之后摸到了廚房各聘,偷偷拿出了一罐冰箱里的啤酒揣非。第二天他的行程只有韓語課和隨團(tuán)例課練習(xí),不...
    Unicode_6350閱讀 2,201評論 0 1
  • 今天我想說的是巴雅的故事躲因。 當(dāng)大家都還在床上賴床時(shí)早敬,巴雅先是小心翼翼的進(jìn)門,手里拿著校園超市買的水果大脉。經(jīng)過幾分...
    我是曼路閱讀 276評論 0 2