一个简单的类,用于检测app版本更新的弹出提示框

废话不多说了,这个类突发奇想,自己写写的,可用于很多地方的弹窗,我这里做更新的提示框用,需要其他地方用的话在类里面写个delegate应该就可以了!我写的比较简单!直接上代码!

UpdateAlterView.h

//
//  UpdateAlterView.h
//  MyProject
//
//  Created by danggui on 16/7/19.
//  Copyright © 2016年 danggui. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UpdateAlterView : UIView

- (void)show:(NSString  *)str;

@end

UpdateAlterView.m

//
//  UpdateAlterView.m
//  MyProject
//
//  Created by danggui on 16/7/19.
//  Copyright © 2016年 danggui. All rights reserved.
//

#import "UpdateAlterView.h"

#define W CGRectGetWidth([UIScreen mainScreen].bounds)
#define H CGRectGetHeight([UIScreen mainScreen].bounds)

@interface UpdateAlterView ()

@property (nonatomic, strong) UIView *bigView;
@property (nonatomic, strong) UIImageView *lab;
@property (nonatomic, strong) UILabel *text;
@property (nonatomic, strong) NSMutableString *textStr;

@end

@implementation UpdateAlterView
@synthesize lab,text;

- (instancetype)init
{
    self = [super init];
    if (self) {
        self.frame = [UIScreen mainScreen].bounds;
        self.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.5];
        
        self.bigView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, W - 40, 150)];
        _bigView.layer.cornerRadius = 10;
        _bigView.layer.masksToBounds = YES;
        _bigView.backgroundColor = [UIColor whiteColor];
        _bigView.center = CGPointMake(W / 2, H / 2);
        
        text = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(_bigView.frame) - 30, 25)];
        text.center = CGPointMake(CGRectGetWidth(_bigView.frame)/2, CGRectGetHeight(_bigView.frame)/2);
        text.text = @"";
        text.textAlignment = NSTextAlignmentCenter;
        [_bigView addSubview:text];
        
        lab = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 80, 80)];
        lab.backgroundColor = [UIColor whiteColor];
        lab.layer.cornerRadius = 40;
        lab.layer.masksToBounds = YES;
        [lab setImage:[UIImage imageNamed:@"image5.jpg"]];
        lab.center =  CGPointMake(self.center.x , self.center.y - CGRectGetHeight(_bigView.frame)/2 + 20);
        
        [self addSubview:_bigView];
        [self addSubview:lab];
        
        UIButton *bu1 = [UIButton buttonWithType:UIButtonTypeCustom];
        bu1.layer.borderColor = [UIColor lightGrayColor].CGColor;
        bu1.layer.borderWidth = .3f;
        bu1.bounds = CGRectMake(0, 0, CGRectGetWidth(_bigView.frame)/ 2, 44);
        bu1.center = CGPointMake(CGRectGetWidth(_bigView.bounds)/4, CGRectGetHeight(_bigView.bounds) - 44 + 24);
        [bu1 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        [bu1 addTarget:self action:@selector(button1) forControlEvents:UIControlEventTouchUpInside];
        
        [bu1 setTitle:@"取消" forState:UIControlStateNormal];
        [_bigView addSubview:bu1];
        
        UIButton *bu2 = [UIButton buttonWithType:UIButtonTypeCustom];
        bu2.layer.borderColor = [UIColor lightGrayColor].CGColor;
        bu2.layer.borderWidth = .2f;
        bu2.bounds = CGRectMake(0, 0, CGRectGetWidth(_bigView.frame)/ 2, 44);
        bu2.center = CGPointMake(3 * CGRectGetWidth(_bigView.bounds)/4, CGRectGetHeight(_bigView.bounds) - 44 + 24);
        [bu2 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
        [bu2 setTitle:@"确定" forState:UIControlStateNormal];
        [bu2 addTarget:self action:@selector(button2) forControlEvents:UIControlEventTouchUpInside];
        [_bigView addSubview:bu2];
        UILabel *line = [[UILabel alloc]initWithFrame:CGRectMake(0, bu2.frame.origin.y, CGRectGetWidth(_bigView.bounds), 0.5)];
        line.backgroundColor = [UIColor colorWithRed:0.8235 green:0.8235 blue:0.8235 alpha:1.0];
        [_bigView addSubview:line];
        
        _bigView.transform = CGAffineTransformMakeScale(0, 0);
        lab.transform = CGAffineTransformMakeScale(0,0);
    
    }
    return self;
}

- (void)button2 {
    [self dissmiss];
    //ReUploadUrl  为你跳转到AppStore的链接
    //#define ReUploadUrl @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id="
    //(ps:id=后面的就是你提交appstore审核的那个id,找不到的自行百度)
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:ReUploadUrl]];
}

- (void)button1 {
    [self dissmiss];
}

- (void)dissmiss {
    [UIView animateWithDuration:.2 animations:^{
        [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
        self.alpha = 0;
    } completion:^(BOOL finished) {
        [self removeFromSuperview];
    }];
}

- (void)show:(NSString  *)str{
    UIWindow *window = [[UIApplication sharedApplication].windows lastObject];
    [window addSubview:self];
    [UIView animateWithDuration:.3 delay:0 usingSpringWithDamping:0.8 initialSpringVelocity:1 / 0.8 options:0 animations:^{
        [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
        //        self.alpha = 1;
        _bigView.transform = CGAffineTransformIdentity;
        lab.transform = CGAffineTransformIdentity;
    } completion:^(BOOL finished) {
        [text setText:str];
    }];
}

@end

使用也很简单

在你需要用到的地方
#import "UpdateAlterView.h"

然后
UpdateAlterView *update = [[UpdateAlterView alloc]init];
[update show:@"有新版本更新哦!😄"];

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

推荐阅读更多精彩内容