ProgressHUD源碼詳解

ProgressHUD源碼詳解

ProgressHUD是iOS開發(fā)中常用的等待控件(菊花控件)帽氓,用戶網(wǎng)絡(luò)請(qǐng)求等

主要結(jié)構(gòu)

ProgressHUD只包含兩個(gè)代碼文件ProgressHUD.hProgressHUD.m杠纵,以及一個(gè)資源文件ProgressHUD.bundle

ProgressHUD本質(zhì)上為UIView的子類

@interface ProgressHUD : UIView

其主要結(jié)構(gòu)包含5部分:

@interface ProgressHUD()
{
    UIWindow *window;
    UIView *viewBackground;
    UIToolbar *toolbarHUD;
    UIActivityIndicatorView *spinner;
    UIImageView *imageView;
    UILabel *labelStatus;
}

以上控件之間的結(jié)構(gòu)關(guān)系如下:


image

初始化控件

  • show方法中調(diào)用
+ (void)show
{
    dispatch_async(dispatch_get_main_queue(), ^{
        [[self shared] hudCreate:nil image:nil spin:YES hide:NO interaction:YES];
    });
}
  • 初始化

- (void)hudCreate:(NSString *)status image:(UIImage *)image spin:(BOOL)spin hide:(BOOL)hide interaction:(BOOL)interaction
{
    //初始化toolbarHUD
    if (toolbarHUD == nil)
    {
        toolbarHUD = [[UIToolbar alloc] initWithFrame:CGRectZero];
        toolbarHUD.translucent = YES;
        toolbarHUD.backgroundColor = self.hudColor;
        toolbarHUD.layer.cornerRadius = 10;
        toolbarHUD.layer.masksToBounds = YES;
        [self registerNotifications];
    }
    
    if (toolbarHUD.superview == nil)
    {
        //如果與背景視圖不可交互克蚂,初始化背景視圖逢捺,背景視圖為toolbarHUD的父視圖
        if (interaction == NO)
        {
            viewBackground = [[UIView alloc] initWithFrame:window.frame];
            viewBackground.backgroundColor = self.backgroundColor;
            [window addSubview:viewBackground];
            [viewBackground addSubview:toolbarHUD];
        }//如果與背景視圖可交互,頂層window為toolbarHUD的父視圖
        else [window addSubview:toolbarHUD];
    }
    //初始化spinner(菊花),并添加到toolbarHUD
    if (spinner == nil)
    {
        spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
        spinner.color = self.spinnerColor;
        spinner.hidesWhenStopped = YES;
    }
    if (spinner.superview == nil) [toolbarHUD addSubview:spinner];
    //初始化imageView并添加到toolbarHUD
    if (imageView == nil)
    {
        imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 28, 28)];
    }
    if (imageView.superview == nil) [toolbarHUD addSubview:imageView];
    //初始化labelStatus魏宽,添加到toolbarHUD
    if (labelStatus == nil)
    {
        labelStatus = [[UILabel alloc] initWithFrame:CGRectZero];
        labelStatus.font = self.statusFont;
        labelStatus.textColor = self.statusColor;
        labelStatus.backgroundColor = [UIColor clearColor];
        labelStatus.textAlignment = NSTextAlignmentCenter;
        labelStatus.baselineAdjustment = UIBaselineAdjustmentAlignCenters;
        labelStatus.numberOfLines = 0;
    }
    if (labelStatus.superview == nil) [toolbarHUD addSubview:labelStatus];

    //文本信息添加
    labelStatus.text = status;
    labelStatus.hidden = (status == nil) ? YES : NO;
    //圖片信息添加
    imageView.image = image;
    imageView.hidden = (image == nil) ? YES : NO;
    //spinner(菊花)旋轉(zhuǎn)(或停止)
    if (spin) [spinner startAnimating]; else [spinner stopAnimating];
    
    [self hudSize];//尺寸設(shè)置
    [self hudPosition:nil];//位置設(shè)置
    [self hudShow];//動(dòng)畫顯示
    //定時(shí)關(guān)閉
    if (hide) [self timedHide];
}

設(shè)置Size


- (void)hudSize
{
    CGRect rectLabel = CGRectZero;
    CGFloat widthHUD = 100, heightHUD = 100;//toolbarHUD默認(rèn)的尺寸
    if (labelStatus.text != nil)
    {
        NSDictionary *attributes = @{NSFontAttributeName:labelStatus.font};
        NSInteger options = NSStringDrawingUsesFontLeading | NSStringDrawingTruncatesLastVisibleLine | NSStringDrawingUsesLineFragmentOrigin;
        rectLabel = [labelStatus.text boundingRectWithSize:CGSizeMake(200, 300) options:options attributes:attributes context:NULL];//計(jì)算文字所需的Rect

        //toolbarHUD對(duì)應(yīng)的Rect
        widthHUD = rectLabel.size.width + 50;
        heightHUD = rectLabel.size.height + 75;

        if (widthHUD < 100) widthHUD = 100;
        if (heightHUD < 100) heightHUD = 100;

        rectLabel.origin.x = (widthHUD - rectLabel.size.width) / 2;
        rectLabel.origin.y = (heightHUD - rectLabel.size.height) / 2 + 25;
    }
    
    toolbarHUD.bounds = CGRectMake(0, 0, widthHUD, heightHUD);
    //imageView對(duì)應(yīng)的位置
    CGFloat imageX = widthHUD/2;
    CGFloat imageY = (labelStatus.text == nil) ? heightHUD/2 : 36;
    imageView.center = spinner.center = CGPointMake(imageX, imageY);
    
    labelStatus.frame = rectLabel;
}

設(shè)置postion

- (void)hudPosition:(NSNotification *)notification
{
    CGFloat heightKeyboard = 0;
    NSTimeInterval duration = 0;
    //計(jì)算鍵盤高度
    if (notification != nil)
    {
        NSDictionary *info = [notification userInfo];
        CGRect keyboard = [[info valueForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
        duration = [[info valueForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
        if ((notification.name == UIKeyboardWillShowNotification) || (notification.name == UIKeyboardDidShowNotification))
        {
            heightKeyboard = keyboard.size.height;
        }
    }
    else heightKeyboard = [self keyboardHeight];
    //toolbarHUD的水平中心在屏幕中間萨螺,垂直中心在除去鍵盤高度的中心。
    CGRect screen = [UIScreen mainScreen].bounds;
    CGPoint center = CGPointMake(screen.size.width/2, (screen.size.height-heightKeyboard)/2);
    //動(dòng)態(tài)設(shè)置toolbarHUD的中心
    [UIView animateWithDuration:duration delay:0 options:UIViewAnimationOptionAllowUserInteraction animations:^{
        self->toolbarHUD.center = CGPointMake(center.x, center.y);
    } completion:nil];
    if (viewBackground != nil) viewBackground.frame = window.frame;
}

  • 注意:
  1. toolbarHUD的水平中心在屏幕中間吃衅,垂直中心在除去鍵盤高度的中心跳仿。
CGPoint center = CGPointMake(screen.size.width/2, (screen.size.height-heightKeyboard)/2);
  1. toolbarHUD的垂直中心會(huì)根據(jù)鍵盤消息進(jìn)行調(diào)整。

顯示

- (void)hudShow
{
    if (self.alpha == 0)
    {
        self.alpha = 1;
        toolbarHUD.alpha = 0; //初始設(shè)置為完全透明捐晶,實(shí)現(xiàn)隱藏功能
        toolbarHUD.transform = CGAffineTransformScale(toolbarHUD.transform, 1.4, 1.4); //放大

        UIViewAnimationOptions options = UIViewAnimationOptionAllowUserInteraction | UIViewAnimationCurveEaseOut; //動(dòng)畫模式設(shè)置
        //動(dòng)畫顯示
        [UIView animateWithDuration:0.15 delay:0 options:options animations:^{
            self->toolbarHUD.transform = CGAffineTransformScale(self->toolbarHUD.transform, 1/1.4, 1/1.4); //恢復(fù)正常
            self->toolbarHUD.alpha = 1; //設(shè)為不透明菲语,顯示出來(lái)
        } completion:nil];
    }
}

隱藏

- (void)hudHide
{
    if (self.alpha == 1)
    {
        UIViewAnimationOptions options = UIViewAnimationOptionAllowUserInteraction | UIViewAnimationCurveEaseIn; //動(dòng)畫模式設(shè)置
        [UIView animateWithDuration:0.15 delay:0 options:options animations:^{
            self->toolbarHUD.transform = CGAffineTransformScale(self->toolbarHUD.transform, 0.7, 0.7); //縮小為原來(lái)的0.7倍
            self->toolbarHUD.alpha = 0; //設(shè)置為透明,實(shí)現(xiàn)隱藏
        }
        completion:^(BOOL finished) {
            [self hudDestroy]; //刪除各控件的依賴關(guān)系惑灵,再刪除控件
            self.alpha = 0;
        }];
    }
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末山上,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子英支,更是在濱河造成了極大的恐慌佩憾,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,561評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異妄帘,居然都是意外死亡楞黄,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門抡驼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)鬼廓,“玉大人,你說(shuō)我怎么就攤上這事致盟∷樗埃” “怎么了?”我有些...
    開封第一講書人閱讀 157,162評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵馏锡,是天一觀的道長(zhǎng)雷蹂。 經(jīng)常有香客問(wèn)我,道長(zhǎng)杯道,這世上最難降的妖魔是什么匪煌? 我笑而不...
    開封第一講書人閱讀 56,470評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮党巾,結(jié)果婚禮上萎庭,老公的妹妹穿的比我還像新娘。我一直安慰自己昧港,他們只是感情好擎椰,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,550評(píng)論 6 385
  • 文/花漫 我一把揭開白布支子。 她就那樣靜靜地躺著创肥,像睡著了一般。 火紅的嫁衣襯著肌膚如雪值朋。 梳的紋絲不亂的頭發(fā)上叹侄,一...
    開封第一講書人閱讀 49,806評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音昨登,去河邊找鬼趾代。 笑死,一個(gè)胖子當(dāng)著我的面吹牛丰辣,可吹牛的內(nèi)容都是我干的撒强。 我是一名探鬼主播,決...
    沈念sama閱讀 38,951評(píng)論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼笙什,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼飘哨!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起琐凭,我...
    開封第一講書人閱讀 37,712評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤芽隆,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體胚吁,經(jīng)...
    沈念sama閱讀 44,166評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡牙躺,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,510評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了腕扶。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片孽拷。...
    茶點(diǎn)故事閱讀 38,643評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖蕉毯,靈堂內(nèi)的尸體忽然破棺而出乓搬,到底是詐尸還是另有隱情,我是刑警寧澤代虾,帶...
    沈念sama閱讀 34,306評(píng)論 4 330
  • 正文 年R本政府宣布进肯,位于F島的核電站,受9級(jí)特大地震影響棉磨,放射性物質(zhì)發(fā)生泄漏江掩。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,930評(píng)論 3 313
  • 文/蒙蒙 一乘瓤、第九天 我趴在偏房一處隱蔽的房頂上張望环形。 院中可真熱鬧,春花似錦衙傀、人聲如沸抬吟。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)火本。三九已至,卻和暖如春聪建,著一層夾襖步出監(jiān)牢的瞬間钙畔,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工金麸, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留擎析,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,351評(píng)論 2 360
  • 正文 我出身青樓挥下,卻偏偏與公主長(zhǎng)得像揍魂,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子棚瘟,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,509評(píng)論 2 348

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