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

Making UIProgressView smoother

I have implemented a UIProgressView which goes by the upload status of files. Everything works properly, but since I'm using CloudKit, the perRecordProgressBlock method gives me chunk-positions of the upload status instead of smooth progress…
Ivan Cantarino
  • 3,058
  • 4
  • 34
  • 73
0
votes
3 answers

observeValueForKeyPath not being called when returning to a UIViewController

I am tracking a progress with a UIProgressView and I set an observer to the property I'm tracking. I add the observer in the viewWillAppear, like this: -(void)viewWillAppear:(BOOL)animated { [self addObserver:self forKeyPath:@"progress"…
0
votes
1 answer

UIProgressView not reflecting first 0.05 of progress

It seems to me that when setting a UIProgressViews progress to a value between >0.0 and 0.05 always shows a progress of 0.05 (no matter the value). I understand that this makes sense from a UX perspective, but does UIProgressView have a property to…
Marmelador
  • 947
  • 7
  • 27
0
votes
2 answers

UIProgressView disappear or doesn't scale when device rotate

I am using Xamarin.IOS, I have UIprogressView inside a UIScrollView with two buttons as well. I am setting the UIprogressView frame by code in ViewWillLayoutSubviews method: CGRect newFrame; newFrame.Width = MyScrollView.Frame.Width…
Hadi Al Tinawi
  • 429
  • 7
  • 22
0
votes
1 answer

Progressview stop when retouch the UIButton

Here is my situation regarding a iOS app running with Swift. I have a download button, which start to download a file on touch: @IBAction func downloadButtonPressed() { if let downloadTask = downloadTask { downloadTask.cancel() …
tibewww
  • 593
  • 4
  • 11
  • 32
0
votes
1 answer

UIProgressView update itself in custom UITableViewCell

I've a UITableView populated with several custom UITableViewCell. In one of them I have a UIProgressView that will represent a percentage of data. However when I set a progress (let's say 50%), the progress bar appear at 50% and update itself until…
Synny
  • 542
  • 1
  • 4
  • 18
0
votes
2 answers

iOS - can't set constraints to UIAlertController with progressView

I have tried to place the progressView inside UIAlertController using constraints in order to get a good visual result on iPhone or iPad. alert = [UIAlertController alertControllerWithTitle:title message:message …
Ricardo
  • 7,921
  • 14
  • 64
  • 111
0
votes
1 answer

How to creat the image download progressView by swift

I have a question,and I want to show the progressView when I download the Image to my local file I write a function to download Image, and take other question as reference. but I don't know how to use URLSessionDownloadTak or other download…
JimmyLee
  • 507
  • 2
  • 7
  • 24
0
votes
3 answers

How to show loading progress bar on bottom of UITextField

I would like to keep the progress bar at bottom part only in UITextField. But I don't know how we can keep it for the bottom side. How can I achieve this?
Aayushi
  • 787
  • 10
  • 14
0
votes
1 answer

update progress view download within custom table view cell in swift language

i have an question about how can i update my progress view in my custom table view cell which is download file from the internet ? if i reload the table view it take huge memory and increasing the memory tableView.reloadData() also if i reload the…
Mustafa
  • 253
  • 1
  • 7
  • 15
0
votes
1 answer

How to make progressview with on side cornor radius

How to set progressview one side corner radius. Please find the attachment the resultant progressView. YLProgressView Below is my ProgressView code. cell.categoryImageView.backgroundColor = [categoryColorArray…
kiran
  • 4,285
  • 7
  • 53
  • 98
0
votes
1 answer

linking UIProgressView to show download progress using Firebase

i am trying to show progress view of the file that i am download when i printed the progress it is right but when i implement it on the progress view it is completely wrong it goes to 3000% here is my code. i am using…
Khallad
  • 123
  • 4
  • 24
0
votes
0 answers

UIProgressView Progress Not Working for a local audio file Using AVAudio Player

My ProgressView doesn't update the progress. I Did this by Interface Builder. My ProgressView is in a tableViewCell. //Declared in TableViewCell @property(nonatomic,retain) IBOutlet UIProgressView *progressview; and also Synthesized in Cell…
0
votes
2 answers

UIProgressView setProgress animation is messed up

For some reason, UIProgressView.setProgress(1, animate: true) causes a messed up animation to occur. The picture below shows the problem. First off, it animates from the center outward and it starts slightly above its actual location. So here is…
Alex Bent
  • 127
  • 1
  • 13
0
votes
0 answers

Extension of Progress Bar causing warning of not key value-coding compilant

I set up an extension to change the height of a progress bar: extension UIProgressView { @IBInspectable var barHeight : CGFloat { get { return transform.d * 2.0 } set { // 2.0 Refers to the default…
Alex Bent
  • 127
  • 1
  • 13