CocoaPods trunk is moving to be read-only. Read more on the blog, there are 17 months to go.

YUProgressHUD 1.1.2

YUProgressHUD 1.1.2

Maintained by yuzhidu.



  • By
  • 马裕博

YUProgressHUD

iOS

提示弹窗的显示和隐藏

使用方法:

    // 请求网络数据前,显示加载中
    [YUProgressHUD showHUDAddedTo:self.view];
    
    // 模拟网络请求
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        // 数据请求结束,停止
        [YUProgressHUD hideHUDForView:self.view];
    });