【iOS UI】自定义XAlertView、HUD、UIAlertController

XAlertView

一、自定义XAlertView继承自UIView

XAlertView.h
#define kXAlertViewWidth (kScreenWidth*250/375)
#define kXAlertViewHeight (kScreenHeight*150/667)
//自定义XAlertView👆

#import <UIKit/UIKit.h>

//代理
@protocol XAlertViewDelegate <NSObject>

//代理方法
- (void)yesBtnPressed;
- (void)noBtnPressed;


@end

@interface XAlertView : UIView
//属性
@property (nonatomic, assign) NSString *title;
@property (nonatomic, assign) NSString *message;
@property (nonatomic, strong) UIWindow *alphaWindow;
//代理
@property (weak, nonatomic) id<XAlertViewDelegate> delegate;

//方法
- (void) showAnimated;

@end
XAlertView.m
#import "XAlertView.h"

@interface XAlertView ()
//私有属性
//@property (nonatomic, strong) UIWindow *alphaWindow;
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UILabel *messageLabel;
@property (nonatomic, strong) UIButton *yesBtn;
@property (nonatomic, strong) UIButton *noBtn;

@end

@implementation XAlertView

-(instancetype)initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
        //背景色
        self.backgroundColor = [UIColor colorWithRed:70/255.0 green:130/255.0 blue:180/255.0 alpha:0.8];
        //圆角
        self.layer.cornerRadius = 15;
        self.layer.masksToBounds = YES;
        
        //添加控件
        [self addSubview:self.titleLabel];
        [self addSubview:self.messageLabel];
        [self addSubview:self.noBtn];
        [self addSubview:self.yesBtn];
    }
    return self;
}


#pragma mark 懒加载控件
-(UIWindow *)alphaWindow{
    if (!_alphaWindow) {
        _alphaWindow = [[UIWindow alloc] init];
        _alphaWindow.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];
        _alphaWindow.windowLevel = 101;
    }
    return _alphaWindow;
}

-(UILabel *)titleLabel{
    if (!_titleLabel) {
        _titleLabel = [[UILabel alloc] init];
        _titleLabel.font = [UIFont fontWithName:@"Monaco" size:18];
        _titleLabel.textAlignment = NSTextAlignmentCenter;
        _titleLabel.textColor = [UIColor whiteColor];
    }
    return _titleLabel;
}

-(UILabel *)messageLabel{
    if (!_messageLabel) {
        _messageLabel = [[UILabel alloc] init];
        _messageLabel.font = [UIFont fontWithName:@"Monaco" size:12];
        _messageLabel.textAlignment = NSTextAlignmentCenter;
        _messageLabel.textColor = [UIColor whiteColor];
    }
    return _messageLabel;
}

-(UIButton *)noBtn{
    if (!_noBtn) {
        _noBtn = [[UIButton alloc] init];
        [_noBtn addTarget:self action:@selector(noBtnPressed) forControlEvents:UIControlEventTouchDown];
        [_noBtn setImage:[UIImage imageNamed:@"no"] forState:UIControlStateNormal];
        _noBtn.frame = CGRectMake(30, self.frame.size.height - 15 - 28, 28, 28);
    }
    return _noBtn;
}

-(UIButton *)yesBtn{
    if (!_yesBtn) {
        _yesBtn = [[UIButton alloc] init];
        [_yesBtn addTarget:self action:@selector(yesBtnPressed) forControlEvents:UIControlEventTouchDown];
        [_yesBtn setImage:[UIImage imageNamed:@"yes"] forState:UIControlStateNormal];
        _yesBtn.frame = CGRectMake(self.frame.size.width - 30 - 28, self.noBtn.frame.origin.y
                                   - 5, 35, 35);
    }
    return _yesBtn;
}

#pragma mark 设值方法
-(void)setTitle:(NSString *)title{
    if (title) {
        _title = title;
        self.titleLabel.text = title;
        [self.titleLabel sizeToFit];
        CGRect rect = self.titleLabel.frame;
        rect.origin.x = self.frame.size.width/2 - rect.size.width/2;
        rect.origin.y = 10;
        self.titleLabel.frame = rect;
    }
}

-(void)setMessage:(NSString *)message{
    if (message) {
        _message = message;
        self.messageLabel.text = message;
        [self.messageLabel sizeToFit];
        CGRect rect = self.messageLabel.frame;
        rect.origin.x = self.frame.size.width/2 - rect.size.width/2;
        rect.origin.y = CGRectGetMaxY(self.titleLabel.frame) + 10;
        self.messageLabel.frame = rect;
    }
}

#pragma mark 带动画显示
-(void)showAnimated{
    self.alphaWindow.frame = [UIScreen mainScreen].bounds;
    [self.alphaWindow makeKeyAndVisible];
    [self.alphaWindow addSubview:self];
    
    //动画效果👇
    CAKeyframeAnimation *animation;
    animation = [CAKeyframeAnimation animationWithKeyPath:@"transform"];
    animation.duration = 0.25;
    animation.removedOnCompletion = YES;
    animation.fillMode = kCAFillModeForwards;
    
    NSMutableArray *values = [NSMutableArray array];
    [values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(0.9, 0.9, 1.0)]];
    [values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(1.1, 1.1, 1.1)]];
    [values addObject:[NSValue valueWithCATransform3D:CATransform3DMakeScale(1.0, 1.0, 1.0)]];
    
    animation.values = values;
    
    [self.layer addAnimation:animation forKey:nil];
    //动画效果👆
}

#pragma mark 按钮点击方法 代理执行代理方法
- (void)noBtnPressed{
    if ([self.delegate respondsToSelector:@selector(noBtnPressed)]) {
        [self removeFromSuperview];
        [self.delegate noBtnPressed];
    }
}

- (void)yesBtnPressed{
    if ([_delegate respondsToSelector:@selector(yesBtnPressed)]) {
        [self removeFromSuperview];
        [_delegate yesBtnPressed];
    }
}

@end
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,311评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,339评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,671评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,252评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,253评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,031评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,340评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,973评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,466评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,937评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,039评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,701评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,254评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,259评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,485评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,497评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,786评论 2 345

推荐阅读更多精彩内容

  • 在日常iOS开发中,系统提供的控件常常无法满足业务功能,这个时候需要我们实现一些自定义控件。自定义控件能让我们完全...
    潇潇潇潇潇潇潇阅读 4,570评论 16 66
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,024评论 4 62
  • 幸福和你有关 那些甜言蜜语交织已不再是谎言 偶尔的打情骂俏会显得更加浪漫 道一声问候、说一声晚安 幸福和...
    曹新庆阅读 266评论 0 1
  • 文/程程 关注我,让我成为你有趣灵魂的摆渡人。 2016年:关注一个偶像从34万粉丝到42万粉丝;加入一个读书会从...
    程程的情怀阅读 332评论 2 1
  • 苏格拉底对于大家应该都不陌生。但是你却找不到一本他自己写的书,甚至没有他写的一页纸。我们都是从他的学生柏拉图和色诺...
    尹二尹阅读 793评论 0 0