iOS懸浮提示窗

作用:

該懸浮窗顯示后切換viewController也會顯示轮蜕,需要手動或設(shè)置定時器使之消失恍飘。

用法:

在需要用到該懸浮提示窗的時候,使用工廠方法削解,并傳入?yún)?shù)2個參數(shù):AlertWindowPositionOption和要顯示的文字text营勤。
其中AlertWindowPositionOption為自定義的位置選項灵嫌,分別為:

AlertWindowPositionTopMiddle 靠窗口上部并縱向居中
AlertWindowPositionCenter 窗口中心位置
AlertWindowPositionBottomMiddle 靠窗口?下部并縱向居中

步驟:

step1:新建一個類CustomAlertWindow,基于UIWindow
step2:自定義該Window
分別在2個文件中寫入如下代碼:

//CustomAlertWindow.h

#import <UIKit/UIKit.h>
typedef NS_ENUM(NSInteger, AlertWindowPositionOption) {
    AlertWindowPositionTopMiddle = 0,
    AlertWindowPositionCenter,
    AlertWindowPositionBottomMiddle
};

@interface CustomAlertWindow : UIWindow
+ (instancetype)aletWindowWithPositionOption:(AlertWindowPositionOption)positionType andInfoText:(NSString *)text;
//顯示
- (void)show;
// 消失
- (void)dismiss;
@end
//CustomAlertWindow.m

#import "CustomAlertWindow.h"

#define LABEL_MARGIN      10       //Label的外邊距
#define CENTER_Y_TO_EDGE  80       //懸浮窗中心點距邊緣的縱坐標(biāo)值

@implementation CustomAlertWindow

+ (instancetype)aletWindowWithPositionOption:(AlertWindowPositionOption)positionType andInfoText:(NSString *)text {
    return [[CustomAlertWindow alloc] initWithPositionOption:positionType andInfoText:text];
}

- (instancetype)initWithPositionOption:(AlertWindowPositionOption)positionType andInfoText:(NSString *)text {
    self = [super init];
    if (self) {
        UILabel *infoLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 15)];
        infoLabel.text = text;
        infoLabel.textAlignment = NSTextAlignmentCenter;
        infoLabel.font = [UIFont systemFontOfSize:13];
        infoLabel.textColor = [UIColor whiteColor];
        //label尺寸適應(yīng)文字大小
        [infoLabel sizeToFit];
        
        //根據(jù)labelSize確定window的大小
        CGSize labelSize = infoLabel.frame.size;
        CGSize windowSize = CGSizeMake(labelSize.width + 2*LABEL_MARGIN, labelSize.height + 2*LABEL_MARGIN);
        //根據(jù)window的尺寸確定label的中心點位置
        infoLabel.center = CGPointMake(windowSize.width / 2, windowSize.height / 2);
        
        //得到屏幕的尺寸
        CGRect superRect = [[UIScreen mainScreen] bounds];
        CGSize superSize = superRect.size;
        //計算window的大小
        self.frame = CGRectMake((superSize.width - windowSize.width) / 2, 0, windowSize.width, windowSize.height);
        
        //根據(jù)指定的positionType設(shè)置window的center
        switch (positionType) {
            case AlertWindowPositionTopMiddle:
                self.center = CGPointMake(superSize.width / 2, CENTER_Y_TO_EDGE);
                break;
                
            case AlertWindowPositionCenter:
                self.center = CGPointMake(superSize.width / 2, superSize.height / 2);
                break;
                
            case AlertWindowPositionBottomMiddle:
                self.center = CGPointMake(superSize.width / 2, superSize.height - CENTER_Y_TO_EDGE);
                break;
                
            default:
                break;
        }
        
        self.windowLevel = UIWindowLevelAlert + 1;
        self.backgroundColor = [UIColor colorWithRed:64  / 255.0 green:64 / 255.0 blue:64 / 255.0 alpha:0.7];
        self.layer.cornerRadius = 5;
        
        [self addSubview:infoLabel];
    }
    
    return self;
}

//顯示window
- (void)show {
    [self makeKeyAndVisible];
}

//window消失
- (void)dismiss {
    [self resignKeyWindow];
}

@end

step3:調(diào)用的時候可以這樣處理:

#import "ViewController.h"
#import "CustomAlertWindow.h"

@interface ViewController ()
@property (nonatomic, strong) CustomAlertWindow *alertWindow;
@end

@implementation ViewController

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

- (IBAction)displayFloatingWindow:(id)sender {
    self.alertWindow = [CustomAlertWindow aletWindowWithPositionOption:AlertWindowPositionCenter andInfoText:@"網(wǎng)絡(luò)不給力"];
    [self.alertWindow show];
    //設(shè)置定時器使之消失
    [NSTimer scheduledTimerWithTimeInterval:4.0 target:self selector:@selector(resignWindow) userInfo:nil repeats:NO];
}

- (void)resignWindow {
    [self.alertWindow dismiss];
    //需要消失的時候不要忘了賦值nil
    self.alertWindow = nil;
}
@end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末葛作,一起剝皮案震驚了整個濱河市寿羞,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌赂蠢,老刑警劉巖绪穆,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡玖院,警方通過查閱死者的電腦和手機(jī)菠红,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來难菌,“玉大人试溯,你說我怎么就攤上這事〗季疲” “怎么了遇绞?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長猎塞。 經(jīng)常有香客問我试读,道長,這世上最難降的妖魔是什么荠耽? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮比藻,結(jié)果婚禮上铝量,老公的妹妹穿的比我還像新娘。我一直安慰自己银亲,他們只是感情好慢叨,可當(dāng)我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著务蝠,像睡著了一般拍谐。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上馏段,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天轩拨,我揣著相機(jī)與錄音,去河邊找鬼院喜。 笑死亡蓉,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的喷舀。 我是一名探鬼主播砍濒,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼硫麻!你這毒婦竟也來了爸邢?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤拿愧,失蹤者是張志新(化名)和其女友劉穎杠河,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡感猛,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年七扰,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片陪白。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡颈走,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出咱士,到底是詐尸還是另有隱情立由,我是刑警寧澤,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布序厉,位于F島的核電站锐膜,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏弛房。R本人自食惡果不足惜道盏,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望文捶。 院中可真熱鬧荷逞,春花似錦、人聲如沸粹排。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽顽耳。三九已至坠敷,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間射富,已是汗流浹背膝迎。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留辉浦,地道東北人弄抬。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像宪郊,于是被迫代替她去往敵國和親掂恕。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,722評論 2 345

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