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
1
vote
1 answer

Programmatically setting progressTint on ProgressView changes progress bar size

It's taken me days to track down where this issue is coming from. I have a TableView with rows of custom Table Cells, inside each of which is a progress view. The app calls for the progress view tint to be green/amber/red based on how full it is. I…
Psiloc
  • 257
  • 3
  • 9
1
vote
1 answer

linking UIProgressView with IBAction

Perhaps I'm missing something here, but I want the user to be able to select a UIProgressView and thus have an IBAction function call (essentially make it behave like a UIButton). This can't be rocket science, but I can't figure it out. BTW, I have…
Rasman
  • 5,349
  • 1
  • 25
  • 38
1
vote
1 answer

UISlider variable maximum value

My iPhone app plays streamed audio from the Internet and I have an UISlider to scrub back and forth the already downloaded file. This UISlider has transparent tracks, and is on top of an UIProgressView. The UIProgressView shows the user the streamed…
neowinston
  • 7,584
  • 10
  • 52
  • 83
1
vote
3 answers

Display a progress bar inside a UITextField object

How can one draw a progressbar inside a UITextField ? I have tested two ways so far. 1. Add a UIProgressView object as a subview of the UITextField object. UIProgressView* progressView = [[UIProgressView alloc] init]; [aUITextField…
monsabre
  • 2,099
  • 3
  • 29
  • 48
1
vote
0 answers

Iterate UIProgressView animation Programmatically - Swift

I have set up a progressView and a textView, I want the progressView to animate its progress bar and when completed, to reset it, simultaneously changing the textView and start the animation again. This is what I tried: var iterator : Int =…
user13370778
1
vote
1 answer

ProgressView UI not showing but the Label is. [Swift]

I want to have my progressView in all tabBar view controllers so the user can use the app while seeing how much the data is loading. The problem I have is the progressView UI is not showing only the label. I think I set everything correctly and…
14079_Z
  • 401
  • 5
  • 20
1
vote
2 answers

Why UIProgressView set progress not stopping?

I want to show pregress bar animation before to move to the App or Auth VC By below code it worked fine but the problem it worked for one time only ( the time you start the Application ) So, the question is it stopping issue ? and if it is how to…
Let.Simoo
  • 93
  • 9
1
vote
1 answer

How do you make progress bar increase when button is clicked ? Swift

I want the progress bar to increase when a "next button is pressed" as further in my code i have if, else statements saying, @IBAction func nextButton(_ sender: UIButton) { if progressBar.progress == Float(0.25) { labelText.text =…
Alicia I
  • 13
  • 1
  • 4
1
vote
1 answer

Animate UIProgressview Color Change

I have an UIProgressView which I would like to change the colour as the progress increases. For example, if the progress fall below 40% the progressTintColor should become red, and if it's above 40% it should become blue. Here is what I've tried if…
The1993
  • 592
  • 1
  • 7
  • 22
1
vote
1 answer

how to track progress and increment count of progress view when dealing with multiple tasks?

i need to add circular progress view which shows progress of downloading and other multiple task completion status and want to show 100% completion and hide the progress view when all the task are completed. for Eg. func…
imgroot
  • 131
  • 3
  • 11
1
vote
2 answers

Update UIProgressView with a Notification

I'm trying to update a UIProgressview while loading data from a server. I have a Class with a sharedInstance to handle the server communication and there is a method which gets data from the server (in a while loop). Now I would like to update my…
Tamas Gal
  • 11
  • 2
1
vote
2 answers

MBProgressHUD or DSActivityView - tap to cancel

I have come across both MBProgressHUD and DSActivityView to show the black rounded corner "Loading" type overlays on an iPhone app. I am just wondering if anyone knows how to extend either of these to detect a tap of the overlay, so that the action…
woopsicle
  • 91
  • 1
  • 2
  • 3
1
vote
3 answers

Setting progress of ProgressView while parsing XML

I am parsing using an XML file. I want to show a Progress Bar till the parsing procedure completes. How can I calculate the progress of the ProgressView ?? Pls Help..
Zaraki
  • 3,720
  • 33
  • 39
1
vote
2 answers

Toggling visibility of uiprogressview in each row of uitableview toggles multiple at once

Basically I have a uitableview with each cell containing a uiprogressview and a uiswitch. toggling the switch toggles the visibility of the progressview. but. if I toggle the switch in row:0. the progressview in row:0 AND row:11 shows. my switch has…
Critter
  • 462
  • 1
  • 3
  • 14
1
vote
2 answers

Turning EstimatedProgress/ProgressView into progress bar in WKWebView

I'm having trouble figuring out how to get ProgressView, which I've converted into estimated progress into a UI progress bar that can be seen. In my output I can clearly see that it is tracking the data but nothing is shown on the UI when a test is…
Nigel Denny
  • 179
  • 2
  • 12