Questions tagged [uiprogressview]

UIProgressView is an iOS user interface element that depicts the progress of a task over time.

UIProgressView is an iOS user interface element that depicts the progress of a task over time. It is most commonly used to show the current progress of an upload/download from the network or a long-running computation.

As of iOS 5, the track (the background) and progress (the bar itself) images can be customized via .

For more information, please refer to the Apple Documentation for UIProgressView.

541 questions
7
votes
2 answers

animateWithDuration: corrupts smooth progressbar increment

In one of my views i need to animate frame property of a UIImageView and while doing it i want to show a progress bar(UIProgressView) in the title view of the navigation bar.The problem is the if i comment out the following animation blocks the…
Ilker Baltaci
  • 11,644
  • 6
  • 63
  • 79
6
votes
2 answers

Are there customizable progress bars for iOS?

UIProgressView doesn't allow any customization. I know it's not exactly something complicated, but still I'd prefer to use an open sourced solution rather than re-inventing my own wheel. Are there any?
Proud Member
  • 40,078
  • 47
  • 146
  • 231
6
votes
2 answers

How to Using ASIHTTPRequest to tracking Upload/Download progress

I got some question is using ASIHTTPRequest to tracking Upload/Download progress This is the sample from ASIHTTPRequest website ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; [request…
Webber Lai
  • 2,014
  • 5
  • 35
  • 66
6
votes
2 answers

How can I link a file download with a Progress View

My button code below download a file from a URL, I need to link it with a Progress View to show the Downloading Progress. @IBAction func btnStream(sender: UIButton) { // First you need to create your audio url if let audioUrl =…
Mike Sylver
  • 63
  • 1
  • 1
  • 4
6
votes
3 answers

Is it possible to add multiple colors in a UIProgressView?

Basically, I want to create a custom progressview that will have different colors depending on the progress value. It should look like the following: [-----Red----][--Yellow--][-Green-]
Frank
  • 3,073
  • 5
  • 40
  • 67
6
votes
4 answers

adding progress bar under navigation bar

I am new to iOS development. I would like to know if in iOS 7 when sending a message under UINavigationBar, which has a title called : Sending, there is a progress bar that is loading till the message is successfully sent. My question is: Is that…
just ME
  • 1,817
  • 6
  • 32
  • 53
6
votes
2 answers

Progress bar while downloading files iOS

I am using the following to download the files from the internet: NSData *myXMLData1 = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:@"Link]]; Now, I would like to put a progress bar while the download is going on. I checked various…
user1228074
  • 61
  • 1
  • 3
5
votes
1 answer

UIProgressView custom maximum value

I'm making an app where I retrive some value from a server, the server load. This value can be from 0.00 to 100.00, but UIProgressView only allows from 0.00 to 1.00. Is there any way I can extend the 1.00 limit to 100.00?
pmerino
  • 5,900
  • 11
  • 57
  • 76
5
votes
3 answers

Swiftui Progress View Hidden

Hello I want to make undetermined Progress View on bar button item. when its done I want to make it hidden, but the hidden() method doesn't have parameter like disabled(Bool). how can I hide the progress view when the task getting done? This is what…
Farras Doko
  • 307
  • 4
  • 11
5
votes
1 answer

Add NSURLConnection loading process on UIProgressView

I created a UIProgressView. But i used NSTimer to UIProgressView's process . Now I need to integrate UIProgressView process, when URL is loading. UIProgressView's size will be depends upon the NSURLConnection's data. I used the following code to…
Velmurugan
  • 2,303
  • 6
  • 30
  • 45
5
votes
0 answers

Hide UIProgressView after fetch for PHAsset is completed and progress finished animating

I'm performing a request to get an image asset given a PHAsset, and I'm using UIProgressView to indicate the progress using the progressHandler PHImageRequestOptions allows me to provide. When that handler is called, it provides me with progress so…
Jordan H
  • 52,571
  • 37
  • 201
  • 351
5
votes
1 answer

UIProgressView Keeps Resetting to 0.0

I've got a UIProgressView in my Storyboard hooked up to my code. I'm trying to set the progress to something non-zero. Here's an example of my code that I've placed in viewDidLoad. [self.progressBar setProgress:(float)someValueBetween0.1and1.0…
Neil Sardesai
  • 147
  • 1
  • 8
5
votes
3 answers

UIProgressView not updating?

I have started playing with UIProgressView in iOS5, but havent really had luck with it. I am having trouble updating view. I have set of sequential actions, after each i update progress. Problem is, progress view is not updated little by little but…
MegaManX
  • 8,766
  • 12
  • 51
  • 83
4
votes
2 answers

UIProgressView become transparent during setProgress with animated = true

In iOS15 UIProgressView changed behavior. When I use self.progress.setProgress(1.0, animated: true), it starts from transparent style. How to return to "alpha = 1" style. progress = 0 progress = 20% progress = 70% progress = 90% P.S.:…
4
votes
3 answers

How to track the progress of a download using ASIHTTPRequest (ASYNC)

I am currently using an asynchronous call to my API (I setup) on my site. I am using ASIHTTPRequest's setDownloadProgressDelegate with a UIProgressView. However I don't know how I can call a selector (updateProgress) which will set a CGFloat…
max_
  • 24,076
  • 39
  • 122
  • 211
1 2
3
36 37