2

有什么方法可以在 ios 中实现一个进度条来显示它是在我提到的本地通知中上传或下载。

Notification Service Extension         

Notification Content Extension

那么有什么方法可以在其中实现进度视图...我是 iOS 开发新手

4

1 回答 1

-1

UIProgressView

UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
[self.view addSubview:progressView];
[progressView setProgress:0.5 animated:YES];
于 2018-07-25T08:46:22.533 回答