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

UIProgressView setCornerRadius working "Sometimes"

I created UIProgressView in a custom cell and I added this, [cell.progressView.layer setCornerRadius:4]; This didn't work with my UIProgressView sometimes !! I used to delete this line accidentally, but even it worked sometimes WOW! How could I…
BlueBookBi.
  • 39
  • 2
  • 9
0
votes
2 answers

Make UIProgressView as a count down timer

I've implemented a UIProgressView as a count down timer, its value is decreased from 1.0 to 0.0 in 1.5 seconds. It already worked but the problem is the time it took was longer than 1.5 seconds, it was about 2.0 - 2.5 seconds until the progress…
JozackOverFlow
  • 267
  • 4
  • 19
0
votes
0 answers

Loading progress view in all cell at a time in Swift

I am using progress view to display download indication. Downloading successfully. But, I am using 5 progress view which I have showed in UITableViewCell. That cell, having START, PAUSE, RESUME buttons and 1 progress view. If I click start button,…
McDonal_11
  • 3,935
  • 6
  • 24
  • 55
0
votes
1 answer

How to animate a UIProgressView on each cell in a UITableView at the same time?

I have a custom cell for a UITableView. The custom cell has a UIProgressView. I would like to set the progress for each cell's progressView with animation at the same time for all cells. The animation should start at viewDidAppear.
crvo84
  • 303
  • 2
  • 11
0
votes
1 answer

Add UIProgressView for [PFObject pinInBackground] to monitor when pin is complete

I think this is a fairly simple question...but we'll see about that. My setup: Xcode: 6.3.2; Parse: 1.7.4; Language: Obj-C I have a bunch of PFObjects that are displayed in a TableView and within each Cell there is a button that the use can tap to…
0
votes
1 answer

Using UIProgressBar to show percentage?

I was hoping there was a way to utilise the UIProgressBar by having it show the percentage or something instead of it animating/loading. For example, if in a game you have collected 25/100 coins, the progress bar would be lit 25% of the way... I…
Reanimation
  • 3,151
  • 10
  • 50
  • 88
0
votes
1 answer

UIButton to trigger UIProgressView?

I am attempting to create an app in Swift using a Storyboard. I want to have a button trigger the UIProgressView's animation. *Expected '{' in body of function declaration* import Cocoa class ViewController: NSViewController { override func…
Mr.X
  • 21
  • 1
  • 4
0
votes
2 answers

UIProgressView on UITableViewCell

I am using AFNetworking to download files from my server. It works fine. But I have one issue: My ProgressView updates wrong cell(UI, not data) when I scroll up or down. Here is my code: My Cell: AFHTTPRequestOperation *operation; @property (weak,…
TienLe
  • 614
  • 2
  • 9
  • 33
0
votes
0 answers

Setting the position of a UIProgressView

I have a view with a UIProgressView control that I placed via storyboard and that I want to reposition to just under the status bar when the view loads, and whenever the orientation flips from portrait to landscape and vice versa. I've tried…
bhartsb
  • 1,316
  • 14
  • 39
0
votes
1 answer

The setProgress: method of a UIProgressView doesn't work in a while loop

I have a while loop and whenever i do while (b == 0) { [progressView setProgress: [progressView progress] +0.01]} The progress never changes. Any help?
XtremeHek3r
  • 381
  • 2
  • 16
0
votes
2 answers

Save UICollectionViewCell progress state

I've already asked the same question about saving pressed button state and I thought that I should do in the same way to save progress state on cells but my tries are unsuccessful. What I'm doing now: I select some UICollectionViewCell's and then…
0
votes
0 answers

integrating UIProgressview in NSOperationQueue

I want to integrate UIProgressView in NSOperationQueue, where i download a image and share it. i want show the progress of download of the image. even if i run in main thread. the progressive start working after the background thread, and the…
iphonedevkumar
  • 129
  • 1
  • 8
0
votes
1 answer

UIProgressView shows on incorrect row when uitableview is scroll

Within UITableView, I have a custom cell with download button. Once Download button is tapped, I update the tag with indexPath.row and in download function progress view is displayed in that cell. The problem is when user scrolls and cell becomes…
0
votes
0 answers

Progressbar custom height iOS7 and iOS8 without AutoLayout

I have to implement a progressbar with custom height which changed dinamycally. The minimum target for the project is iOS7. I tried use this code : CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 5.0f); progressView.transform =…
Tyrone Prude
  • 362
  • 7
  • 19
0
votes
2 answers

How to change UIProgressView color while Progress Changes

I want to change my UIProgressView progress color while the progress changes. So basically it starts white and goes getting blue while it approaches the end. here's my code: -(void)changeSendProgProgress:(float)progress { CGFloat redBlueValue…
Fred Novack
  • 727
  • 9
  • 27