第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

iOS學習筆記--PresentedVC自定義彈窗

標簽:
iOS

一 、封装自定义弹窗有一下几种:

1 直接在当前视图控制器上放view(简直6翻了)

2 present到一个新的半透明视图控制器(类似UIAlertViewController,也就是说咱们要用的就是个控制器而不是个View了)

3 使用一个windowLevel更高的UIWindow(UIAlertView就是这种)

4 放在keyWindow上(使用这种方式有隐患,点击查看详情

5 放在[UIApplication sharedApplication] delegate] window]上

二 看看效果

图片描述

我选择这种方法的原因是简单方便,有复杂交互的也可以,那就是两个控制器之间的传值了。

这里上代码:


#import "BCAlertViewController.h"

@interface BCAlertViewController ()
@property (weak, nonatomic) IBOutlet UIView *alertView0;
@property (weak, nonatomic) IBOutlet UILabel *textContent;
@property (weak, nonatomic) IBOutlet UIButton *closeBtn;

@end

@implementation BCAlertViewController

- (void)viewDidLoad {
    [super viewDidLoad];
//标注方法setCornerRadious:4 borderColor:nil borderWidth:0  ①
    [self.alertView0 setCornerRadious:4 borderColor:nil borderWidth:0];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

- (IBAction)closeBtnClicked:(id)sender {
    [self dismissViewControllerAnimated:YES completion:nil];
}

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
    [self dismissViewControllerAnimated:YES completion:nil];
}

@end

//方法①的注释 自己写Category

#import "UIView+CornerRadious.h"

@implementation UIView (CornerRadious)

//设置圆角
- (void)setCornerRadious:(CGFloat)cornerRadious borderColor:(UIColor *)borderColor borderWidth:(CGFloat)borderWidth
{
    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:cornerRadious];
    CAShapeLayer *maskLayer= [[CAShapeLayer alloc]init];
    maskLayer.frame = self.bounds;
    maskLayer.path = path.CGPath;

    CAShapeLayer *borderLayer = [[CAShapeLayer alloc]init];
    borderLayer.lineWidth = borderWidth;
    borderLayer.strokeColor = borderColor.CGColor;
    borderLayer.fillColor = ClearColor.CGColor;
    borderLayer.frame = self.bounds;
    borderLayer.path = path.CGPath;

    [self.layer insertSublayer:borderLayer atIndex:0];
    self.layer.mask = maskLayer;
}

///使用方法

- (IBAction)registerBtnClicked:(id)sender {

    BCAlertViewController *alert = [[BCAlertViewController alloc]init];
    alert.modalPresentationStyle = UIModalPresentationOverCurrentContext;
    alert.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    [self.navigationController presentViewController:alert animated:YES completion:nil];

}

注意:BCAlertViewController.h 的view的背景色设置

    [[UIColor blackColor]colorWithAlphaComponent:0.2];
點擊查看更多內(nèi)容
2人點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優(yōu)惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消