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

How can i make a gauge like this?

I hope make a gauge like in this as image. I don`t find sample souce or article. thanks
Boinred
  • 29
  • 1
  • 4
0
votes
0 answers

How to use single progressView to update estimated progress from one or many wkwebviews

I have a view controller configured via storyboard. Top of the view has a progressView. The view also has a UIView called contentView, which is being used as a placeholder for other view to constrain against. The problem is when a new wkwebview i.e…
t_godd
  • 194
  • 2
  • 3
  • 18
0
votes
0 answers

UIProgressView is not updating inside UICollectionView in Swift3 iOS

I am new to Swift3. I am uploading Video to Amazon S3 server from my Application and for each Video I have set one progress view. When I am adding a video that time my ProgressView is updating but my problem is when I am going back from the screen…
user2786
  • 656
  • 4
  • 13
  • 35
0
votes
0 answers

Update progressView in UITableView based on indexpath

I am working on a audio player app that should allow the user to click on a button on the UITableViewCell in a UITableView to play a song, then they can see the progression of the song on the progress bar. I don't want to create an object for each…
TayPark
  • 1
  • 1
0
votes
2 answers

How to use a UIProgressView with UITextField as the progress value?

My goal is to create a UIProgressView that shows the progress that the user enters in. I have been looking for examples everywhere and all of them use the progress view with a timer. I also want the progress to be saved using User Defaults. Is there…
N.Lucas
  • 11
  • 1
  • 3
0
votes
1 answer

ProgressBar not moving in ViewController

I am despreate with this ProgressBar-issue. The below code shall test a ProgressBar-update. But the View only shows a frozen bar with progress = 0 What is wrong here ??? What is necessary (else than dispatching on the main-queue) for a…
iKK
  • 6,394
  • 10
  • 58
  • 131
0
votes
1 answer

KDCircularProgressView not showing

I want to make KDCircularProgressView programmatically. I included KDCircularProgressView.swift file from https://github.com/kaandedeoglu/KDCircularProgress. Here is code form UIViewController: private var progressView: KDCircularProgress! private…
Rango
  • 229
  • 1
  • 4
  • 14
0
votes
0 answers

Can't set UIProgressView lower than 0.15

I have a progress view and can't seem to set it's progress lower than 0.15. If I do, it still appears as it's progress is at 0.15. After the progress grows beyond this value, everything works OK. The view inspector shows the two image views for the…
user426132
  • 1,341
  • 4
  • 13
  • 28
0
votes
0 answers

How to get the actual value of a slider while animating the progress

I am trying to get my ui slider value while the animation progress but I am failing, I am using the above code to animate my ui slider: UIView.animate(withDuration: 2, animations: { self.ProgressLicht.setValue(Float(self.targetLightValue),…
Mohamed Elloumi
  • 158
  • 4
  • 21
0
votes
1 answer

How to reset UIProgressView to 0 when using observedProgress

[XCode 8, Swift 3] I am using a UIProgressView by setting the observedProgress property to an instance of a Progress object, i.e.: progressView.observedProgress = myProgress myProgress.totalUnitCount is initially 0 and the UIProgressView correctly…
biomiker
  • 3,108
  • 1
  • 29
  • 26
0
votes
1 answer

Show download progress in UITableviewCell

I'm iOS Developer.I want to implement functionality like,there are multiple files display in UITableview with File name,UIProgressView and download button.I want to implement if user click on download button then start downloading file with updating…
Ankit Prajapati
  • 129
  • 1
  • 11
0
votes
2 answers

Animating a view inside a collectionviewcell

I am a little stuck with animating a progressView (using this subclass: Linear Progress View). Just a little bit of background so the code posted below makes sense. I have created a subclass of UICollectionViewCellwith some basic functions. Mainly…
Paulo
  • 602
  • 1
  • 8
  • 20
0
votes
1 answer

How to UITest UIProgressView?

Situation: I want to UI-test my progress view and see if it's progress has increased. What I've tried: By using a breakpoint in my UI-test and using the po print(app.debugDescription), I can successfully see and access the UIProgressView element.…
Thermometer
  • 2,567
  • 3
  • 20
  • 41
0
votes
1 answer

progress view in alamo fire will not update when downloading file in swift 3

I want to download a file with alamo fire and using alert with progress to show it but the progress will not move when alamo fire progress.fractionCompleted increased I use static var to equal progres.fractionCompleted but it doesn't worked too…
0
votes
2 answers

Multiple UITableViewCells each with UIProgressView very slow to update

I am making a game which has 10 UITableViewCells in a UITableView. Each of the 10 UITableViewCells has one UIProgressView plus a lot of other views. I update the UITableView every 1/10th of a second, this is very slow and lags on older devices. I…