【问题标题】:How can I create ProgressBar in notification in iOS?如何在 iOS 的通知中创建 ProgressBar?
【发布时间】:2023-04-02 11:21:01
【问题描述】:

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

Notification Service Extension         

Notification Content Extension

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

【问题讨论】:

  • 我的申请中需要同样的东西,你有什么线索吗?

标签: objective-c uilocalnotification unnotificationserviceextension


【解决方案1】:

UIProgressView

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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-05-27
    • 2014-03-03
    • 2014-10-21
    • 2022-01-03
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多