DDProgressHUD icon indicating copy to clipboard operation
DDProgressHUD copied to clipboard

Progress 进度条,UIActivityIndicatorView 小菊花,弹窗,状态显示

Results 1 DDProgressHUD issues
Sort by recently updated
recently updated
newest added

修改多线程下异步的情况,在显示和隐藏的地方不能再使用OperationQueue,因为show方法的执行已经在OperationQueue,这样会影响到代码的顺序执行。很简单的情况,show的Operation,有可能会排dismiss后面。 dismissWithDelay: 应该把所有的代码块都放到Operation块中。 还有,这个sdk并不是不用考虑多线程,必须要考虑,其UI操作,dismiss和show,都必须在主线程里去做。