IOS MBProgressHUD常見的幾種用法

2021-07-10 23:06:17 字數 715 閱讀 5669

用法一 :(最簡單的用法,不需要其他的操作)

(1)在資料載入之前新增**,

[mbprogresshud showhudaddedto:self

.view animated:yes];//開始載入資料提示

(2)在資料載入成功之後新增

[mbprogresshud hidehudforview:self

.view animated:yes];//隱藏載入資料提示

用法二:

//初始化進度框,置於當前的view當中

mbprogresshud *hud = [[mbprogresshud alloc] initwithview:self

.view];

[self

.view addsubview:hud];

//如果設定此屬性則當前的view置於後台

hud.dimbackground =yes;

//設定對話方塊文字

hud.label

.text= @"請稍等";

//顯示對話方塊

[hud showanimated:yes whileexecutingblock:^ completionblock:^];

用法三:

- (void)viewdidload

iOS MBProgressHUD的使用方法

mbprogresshud就是乙個非常好用的第三方庫,可以快速接入載入的介面,下面貼 下面的 包含了各種常用型別的載入 import viewcontroller.h import mbprogresshud.h inte ce viewcontroller property atomic,assi...

iOS MBProgressHUD的基本使用

方式1.直接在view上show hud mbprogresshud showhudaddedto self.view animated yes retain hud.delegate self 常用的設定 小矩形的背景色 hud.color uicolor clearcolor 這兒表示無背景 顯...

用python 解析XML 的幾種常見方法的介紹

xml extensible markup language 指的是可擴充套件標記語言,被設計用來傳輸和儲存資料,已經日趨成為當前許多新技術的核心,在不同的領域都有著不同的應用,它是web 發展到一定階段的必然產物 python 解析xml 常見的有三種方法 一是 xml.dom.模組,它是w3c ...