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
2
votes
2 answers

CollectionView Cell and Progress Bar - Progress Bar showing in wrong Cell after scrolling

Ive been searching for a answer to this one for days now and cant seem to figure it out. I have a Collection View with custom cell. When you double tap a cell in the Collection View it will either download a file or delete it if its been downloaded…
Pippo
  • 1,439
  • 1
  • 18
  • 35
2
votes
1 answer

how can i change the maximum value for the progressView in swift 3

the issues is the progress view have maximum value to 1.0 i try to change it for the file size which i download it from the internet but i couldn't please can tell me how can i change the maximum value for the progress view so it is match which…
Hamza Hassan
  • 107
  • 1
  • 10
2
votes
1 answer

How to link Firebase download file with a progress view?

Below is the code I am using to download PDF files from Firebase storage. What I want to do is to link it with a download progress view with percentage instead of activity indicator. import Foundation import UIKit import Firebase import…
Khallad
  • 123
  • 4
  • 24
2
votes
2 answers

How to limit sliding of the UISlider to a certain point?

I have a UISlider & UIProgressView to which I set a certain value. The slider handle then moves to a maximum value, as expected. UISlider and UIProgressview Image Now, I want to let the user slide the slider thumb to that red point. (as in the…
Aashish
  • 2,532
  • 2
  • 23
  • 28
2
votes
3 answers

Reset UIProgressView and begin animating immediately with Swift 3

I have a progress view like the one Snapchat and Instagram Stories have. My content changes after the progress view reaches to the end or when tapped on a button. I'm reseting the progress view when content changes. Everything works as expected…
2
votes
1 answer

UIProgressView update lag

I have a UIProgressView which is used to show to the user the progress of a file download. The download request is done in a background thread, and in the progress block, the UIProgressView progress value update is called on the main thread. It…
Iulian Onofrei
  • 9,188
  • 10
  • 67
  • 113
2
votes
2 answers

A table with cells that all have their own progress views is very slow

I have a table which displays information about a list of objects being downloaded. Each cell contains a UIProgressView that is updated according to the progress of that download. My problem is that during the download and updating of this progress…
Matt Le Fleur
  • 2,708
  • 29
  • 40
2
votes
2 answers

Swift - UIProgressView fills diagonally

So I set up a UIProgressView to fill after 3 seconds as well as increasing the height of the bar a bit. However when it fills up, it fills diagonally as opposed to just filling from one side to the other. The bar starts in the top right corner and…
dwinnbrown
  • 3,789
  • 9
  • 35
  • 60
2
votes
2 answers

How to show ProgressBar With AFNetworking AFHTTPRequestOperationManager

I am trying to show the Progress Bar as I download a JSON from a url. The JSON is downloading correctly but I am not sure how to show the Progress Bar. I have tried using UIProgressView but it does not display on the screen. Any suggestions would be…
baskInEminence
  • 710
  • 11
  • 26
2
votes
0 answers

IOS : I am using PDColoredProgressView for my progressive view

This is my code , i have added NStimer PDColoredProgressView *progressVIew =[[PDColoredProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault]; [progressVIew setFrame:CGRectMake(50, 50, 200, 25)]; [progressVIew…
Ravikanth
  • 308
  • 1
  • 10
2
votes
2 answers

UIProgressView and regular refresh (in Swift)

I need to parse quite a lot of text and wanted to provide some feedback to the user while this is taking place. The environment is Swift and while I do see some code in Obj-C ([self performSelector:@selector(.....)), it doesn't make a lot of sense. …
Jon M
  • 530
  • 5
  • 17
2
votes
1 answer

Progress bar while synchronous save to parse.com

Anyone know how I can show a UIProgressView while I save synchronous to parse.com? I try to show a progress view before I start the sync save and hide it after the save is done, but this doesn't work. It doesn't show the progress view and just start…
TommyF
  • 381
  • 1
  • 7
  • 22
2
votes
0 answers

iOS - Swift - UIProgressView Animation Update

I was wondering if it is possible to know when the animation ends in a UIProgressView Because during the animation, the progress value is already set to 1, even if it's half-way on your screen (during test) I've noticed that using a bigger value…
2
votes
2 answers

customize progressview / UISlider in ios

I would like to display the progress like the image(except the black background that is screen color). I am using progress view for this. Here user doesn't have chance to change the progress manually. Please help me on this.
Noundla Sandeep
  • 3,334
  • 5
  • 29
  • 56
2
votes
1 answer

UIProgressView not updated

I have a UIProgressView that I am trying to change the progress but is is never updated. My "slow" operation is done from a NSoperation/NSOperation queue so it should be multithreaded. Did you already experienced this or do you have any idea to…
AP.
  • 5,205
  • 7
  • 50
  • 94