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

Download progress in cell

I'm trying to develop a progress view inside UITableViewCell. In my first realization I used AFHTTPRequestOperation and its setDownloadProgressBlock:^ inside my cell. Later my goal became more complicated. I have one UITableView that displays…
iWheelBuy
  • 5,470
  • 2
  • 37
  • 71
0
votes
1 answer

UIProgressView not updating as expected

Following the answer outlined in this question, I managed to get a UIProgressView sort-of working but it seems to finish updating (i.e. the bar "fills up") before it should. I tried adding some log statements to see what was going on: float actual =…
Robert
  • 5,278
  • 43
  • 65
  • 115
0
votes
1 answer

UIProgressView work not correctly when setFrame in UICollectionViewCell

I create a UIProgressView inside UICollectionViewCell, I try to setFrame for UIProgressView to change position in UICollectionViewCell but when do that, some cells not display progressView. When I delete setFrame, It's OK but default width at the…
LE SANG
  • 10,955
  • 7
  • 59
  • 78
0
votes
1 answer

persist the state of progress bar

I am using ASIHttpRequest to download documents in my app.I am displaying the progessbar for each document downloaded.The documents are displayed in a UITableView,so there is a separate progressbar for each document cell in the table.When the user…
user1550951
  • 369
  • 2
  • 9
  • 26
0
votes
1 answer

How to show UIProgressView with MKMapView?

In my application, i have latitude and longitude values to show a location in MKMapView. In previous version i have used UIActivityIndicator until Mapscreen loads in MKMapView. Now i want to show a UIProgressView instead of UIActivityIndicator. Is…
0
votes
1 answer

How to update UIProgressView correctly in objective-C

I've got class LoadViewController and on start i call this: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. dispatch_async(kBgQueue, ^{ NSData *dataOfURL = [NSData dataWithContentsOfURL:kRSSURL]; …
Tomasz Szulc
  • 4,217
  • 4
  • 43
  • 79
0
votes
1 answer

AFNetworking + Multiple NSOperationQueues + progress

I have an application that I'm working on that has a UITableView. Each cell has a download button that is supposed to download several files that are tied to that cell. I want to be able to track the progress of each queue that is downloading the…
0
votes
1 answer

ProgressView for Downloading some files in Object-C

my problem is this: I want to show ProgressView for files downloading.For some reason the ProgressView gradually rises, showing how much file is already downloaded , and just immediately fills up when files are still not downloaded! What do I need…
IlyaKharlamov
  • 479
  • 1
  • 4
  • 10
0
votes
1 answer

Objective c : How to set time and progress of uiprogressview dynamically?

Say I have a UIProgressBar with size (394,129,328,9) and I increased the height with CGAffineTransform transform = CGAffineTransformMakeScale(1.0f, 3.0f); PgView.transform = transform; What I need to implement is : If I have 5 minute time,the…
Yama
  • 2,649
  • 3
  • 31
  • 63
0
votes
2 answers

Objective-c Making levels for an iPhone game

I have a question game in which I ask the user some questions and depending on how fast the user answers correctly and what level the user is in I want the user to get different amounts of xp/ progress for the progress view that I have. So I have a…
Wieder
  • 5
  • 3
0
votes
1 answer

progress bar dont work with ASIHTTPRequest

add UIProgressView with StoryBoard,and set it as the progress bar of ANIHTTPRequet Do i init the UIProgressView or use function setDownloadProgressDelegate: correctly? TIA! @interface xyzViewController : UIViewController { …
Maadiah
  • 431
  • 6
  • 20
0
votes
2 answers

How to write a dowloader class for updating download progress in iOs

Here is my actual issue, as some suggested I want to write a class for handling the multiple download progress in a UITableView. I have no idea how to write a class for this, can somebody help with some tips or ideas?
0
votes
1 answer

connection:didReceiveResponse: from NSURLConnectionDelegate never fired

I'm trying to get UIProgressView, NSURLConnection, NSOperation and NSOperationQueue working together. Here is the code: http://pastie.org/4080576 Problem: connection:DidReceiveData: never called: execution going immediately to -start(), through…
0
votes
2 answers

Creating UIProgressView with Cocos2d

I've looked all over and I can't find how to properly place a uiprogressview programmatically on a scene in Xcode using cocos2d. Obviously cocos2d doesn't use interface builder so I'm basically building everything blind, but I can't figure out a way…
Seany242
  • 373
  • 7
  • 20
0
votes
1 answer

Custom UIView to display progress with dots instead of bar

I'm trying to setup a view that will display progress with these dots instead of a solid bar. Ideally, I'd like to have the dots fill vertically (Bottom to top). I have two UIImageViews inside of a UIView, one for the grey background and one with…
ChickensDontClap
  • 1,871
  • 4
  • 22
  • 39