2022-11-30
2022-11-30 本文已影响0人
thomas龙辰
dispatch_async(dispatch_get_main_queue(), ^{
[SVProgressHUD showWithStatus:@"加载中..."];
});
部分方法SVProgressHUD无效 最好在主队列里使用
dispatch_async(dispatch_get_main_queue(), ^{
[SVProgressHUD showWithStatus:@"加载中..."];
});
部分方法SVProgressHUD无效 最好在主队列里使用