项目介绍:
项目简介
效果预览
安装
Cocoapods
pod ‘CCActivityHUD’
Carthage
github “Cokile/CCActivityHUD”
手动
将CCActivityHUD文件夹中的所有文件加入到你的项目中
快速使用
import <CCActivityHUD/CCActivityHUD.h>
self.activityHUD = [CCActivityIndicatorView new];
// Show with the default type.
[self.myactivityHUD show];
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Your task code here
dispatch_async(dispatch_get_main_queue(), ^{
// When the task has completed.
[self.activityHUD dismiss];
});
});
github地址:https://github.com/Cokile/CCActivityHUD