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

UIProgressView don't show progress

I don't understand where I lay an egg. I need to update progress of progreesView. I create UIProgressView in IB and change only color. I have property and next code @property (weak, nonatomic) IBOutlet UIProgressView *progressView; property connect…
Neznajka
  • 305
  • 5
  • 19
2
votes
2 answers

Customized UIProgressView with rounded corner images

I am having difficulties customizing UIProgressView with two images. I have found plenty of helpful questions on the internet, but my problem is a little different. Maybe in a way that images I am using are rounded on not cornered rectangles;…
sam46
  • 37
  • 2
  • 7
2
votes
1 answer

UITableViewCell displaying a UIImageView or UIProgressView

I am downloading images asynchronously and displaying them in a UITableView. While theimage is downloading, a UIProgressView should be displayed in the corresponding table row. After the download is complete, progress view should be replaced by the…
ganime
  • 129
  • 2
  • 9
2
votes
2 answers

UIProgressView not updating while my App loads its resources

I am trying to update a UIProgressView progress bar that I have in a UIView during a long resource loading process. Let's say I'm loading a bunch of bitmaps from a NIB file (like maybe a hundred). After I load 10, I issue a .progress to the…
kspeacock
  • 173
  • 2
  • 9
2
votes
1 answer

UIProgressView in CustomCell never show when NSNotification was sent

I've got magazine app. There is UITableView which contains custom cells. In each cell is button, icon, title and hidden UIProgressView. When someone tap to button, pages (images) are starting to download. When some page is downloaded, I want to show…
2
votes
2 answers

UIProgressView updates in UITableView causes scrolling artefacts

I have noticed that when a table view cell contains a UIProgressView that is frequently updated, the scrolling behavior of the table view is affected significantly. To be more precise, due to the frequent updates of the progress view the table…
Bart Jacobs
  • 9,022
  • 7
  • 47
  • 88
2
votes
2 answers

AFNetworking show upload-progress

I have a question about using AFNetworking and showing a upload-progress. Scenario: From a tableview the user can click on a row and go into a detailview. In the detailview the user can upload five images. If the user upload one image, a…
Morten Gustafsson
  • 1,869
  • 2
  • 24
  • 34
2
votes
6 answers

height of progress view xcode

Is there a way to change the height of a progress view bar in Xcode? I am using Xcode 4.3 and need a vertical progress bar. I rotated the bar but now cannot change the height and is displays as a circle. Also a more effective way to rotate the…
Amelia777
  • 2,664
  • 2
  • 16
  • 11
2
votes
1 answer

UIProgressView custom progress bar with UIImage

I'm using iOS 5, and I've been searching and haven't found if I can make a thick progress bar using UIProgressView with UIImage. How do I use a small .png file and basically stretch it out with UIProgressView so that it looks like a progress bar or…
Jack
  • 5,264
  • 7
  • 34
  • 43
1
vote
2 answers

UIProgressView with multiple asynchronous NSURLConnection in iOs

I am using following code to download file from url's asynchronously, NSMutableData *responseData = [[NSMutableData alloc] init]; NSURL *url = [NSURL URLWithString:@"http://www.tuiscos.com/images/trading.png"]; NSURLRequest *request…
Mithuzz
  • 1,091
  • 14
  • 43
1
vote
2 answers

How to Implement UIProgressView in iphone sdk

I have this code in a button click [NSThread detachNewThreadSelector: @selector(spinBegininapp) toTarget:self withObject:nil]; to show a activity indicator for user that the background thread is running ,i put this code to enable the…
stackiphone
  • 1,245
  • 3
  • 19
  • 41
1
vote
1 answer

Issue , Only last row gets updated

I am trying to create a UIPickerView inside UITableViewCell, and it works fine. I have set the tag for UIProgressView as indexPath.row. Currently i have 3 rows i am using this UIProgressView when downloading a file using NSURLConnection When…
user198725878
  • 6,266
  • 18
  • 77
  • 135
1
vote
1 answer

UILabel and UIProgressView not updated until my communication class finishes

I have both a UILabel and UIProgressView that I'm giving multiple updates to, but nothing is rendered until my communication object is finished. I've got this ViewController: @interface UpdateServerViewController : UIViewController
1
vote
2 answers

uiprogressview ProgressTintColor in iOS 4.3

I am trying to color a progress bar but mantaining compability with iOS 4.3. ProgresTintColor was introduced in iOS5. Any ideas?
Ben Quan
  • 773
  • 11
  • 25
1
vote
2 answers

ASIHTTPRequest is not updating the DownloadProgress Delegate

I am using ASIHTTPRequest to download a file locally to the iDevice. My download code is as follows ASIHTTPRequest *download = [ASIHTTPRequest requestWithURL: videoUrl]; [download setCompletionBlock:^{ NSLog(@"Download Success"); …
Bill Bonar
  • 1,017
  • 2
  • 10
  • 22