2

Is there Any way to implement a Progressbar in ios to show it is something is Uploading or Downloading in Local Notification I have referred.

Notification Service Extension         

and

Notification Content Extension

So is there any way to implement the progress view in any of this...I am New to iOS Development

1 Answers1

-1

UIProgressView

UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
[self.view addSubview:progressView];
[progressView setProgress:0.5 animated:YES];
Community
  • 1
  • 1
Albert Renshaw
  • 17,282
  • 18
  • 107
  • 195