如何在iOS的通知中创建ProgressBar?

时间:2018-07-24 05:52:23

标签: objective-c uilocalnotification unnotificationserviceextension

有没有什么方法可以在ios中实现进度条以表明它是我提到的在本地通知中上载或下载。

Notification Service Extension         

Notification Content Extension

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

1 个答案:

答案 0 :(得分:0)

UIProgressView

UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
[self.view addSubview:progressView];
[progressView setProgress:0.5 animated:YES];