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

How to solve delay of progressView's movement animation

Currently, I'm downloading data from a web server by calling a method fetchProducts. This is done in another separate thread. As I successfully download fifty items inside the method stated above, I post a notification to the [NSNotification…
Grauzten
  • 353
  • 5
  • 19
1
vote
2 answers

Update UIProgressView defined in one class, from another class instance

I apologize if my terminology isn't correct - I've been learning Objective C for just a few days, so I'm still a little unfamiliar. I have a ViewController that has a progress bar (UIProgressView) hooked up with an IBOutlet using Xcode's storyboard…
Nande
  • 637
  • 1
  • 7
  • 18
1
vote
1 answer

Updating UIProgressView within dispatch_async

I have my app making a google API call using dispatch_async and getting the JSON results that I am parsing through. I want to implement a progress view such that it updates depending on how many results from JSON response that I have parsed…
BlueChips23
  • 1,861
  • 5
  • 34
  • 53
1
vote
2 answers

Load new view when UIProgressView is full

So I have a UIProgressView that works as a sort of loading bar. The parent UIView is inside a navigation controller, and when the UIProgressView is full, I want to go to the next view in the navigation hierarchy. Any tips on how to do this?
Julian Coltea
  • 3,599
  • 10
  • 26
  • 32
1
vote
1 answer

UiAlertView with UIProgressView for copying files locally

I've been trying to get this working for a day now and I'm still failing. I want to copy a number of files into the Documents folder of my app from the bundle when the app is installed, but this makes the user wait for a long time with the app…
Andres Bucci
  • 947
  • 1
  • 9
  • 37
1
vote
0 answers

UIProgressView on UIButton to display downloading status iOS5

I am developing one iphone app using iOS 5. I want to implement the functionality like kindle app to download data from server as shown in following image I have implemented the progress view on button. Nut when I scroll the table cell , progress…
iOSAppDev
  • 2,755
  • 4
  • 39
  • 77
1
vote
2 answers

UIProgressview gets reset

I am trying to implement UIProgressview in my application it works fine , until i navigate to another view. When i navigate to another view controller , the progressview gets reset and starts updating again. Is this a intended behavior of…
user198725878
  • 6,266
  • 18
  • 77
  • 135
1
vote
1 answer

Objective c free custom progress view for iphone with ability to set background image

I want to know, is there any third party library or control available for progress view. Basically I want to set a background image of the progress view, and rest of the functionality would be same as default progress view. Can any one guide me…
Saad Umar
  • 604
  • 1
  • 8
  • 17
1
vote
2 answers

How to show multiple download progress using ASINetworkQueue

I want to perform the downloads on multiple button clicks and these are buttons are created dynamically. And each button is assigned with different urls. I want to perform multiple download operations at the same time, and also want to update the…
Mithuzz
  • 1,091
  • 14
  • 43
1
vote
4 answers

UIProgressView: How to get the old style?

I'm searching for the old style of the UIProgressView: alt text http://img.skitch.com/20090620-dagnbt6eh2s884nfkbkqgne1re.jpg The only UIProgressViewStyle, I'm able to present is this: alt text…
Stefan
  • 28,843
  • 15
  • 64
  • 76
1
vote
0 answers

UIButton is unable to be pressed when UITableViewCell is reloading

I have a tableview which contains the downloaded and downloading objects, where the downloading cell is custom with 2 labels, 1 UIProgressView and 1 UIButton. My NSURLConnection delegate will keep updating the progress when object is downloading.…
Terence
  • 443
  • 3
  • 13
0
votes
1 answer

Add UIProgressView to a TableView Cell

I have an app that presents Table View of different files. I have it set up to Asynchronously download, and would like to have the selected cell show a progress bar. I've looked online all afternoon, and everything I have found so far seems real…
user717452
  • 33
  • 14
  • 73
  • 149
0
votes
3 answers

UIProgressView not appearing on UITableViewCell

I have a prototype cell on an iOS storyboard that includes a UIProgressView. A background process that executes periodically notifies a delegate that it has started. This delegate should make the UIProgressView visible on the table cell, but this…
Jonathan Smith
  • 2,390
  • 1
  • 34
  • 60
0
votes
1 answer

ASIHTTPRequest UIProgressView don´t work

I´m new in Xcode and have a problem with UIProgressView. I found some code but I don't understand it well. Could you please explain me why UIProgressView is not closing after finish? - (IBAction)Download:(id)sender { NSURL *url = [NSURL…
0
votes
2 answers

Any way to prevent UIActionSheet from being dismissed when user clicks a button in it?

I added a UIProgressView to my UIActionSheet to indicate the download progress. So I do not want my UIActionSheet to be dismissed when user click the download button in it. But is there a way to do that ? Right now I implement…
Qiulang
  • 10,295
  • 11
  • 80
  • 129