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

how to use ProgressView in xcode for show download's status

I create one application that download file from url with any size.I have one button and one progress view in my page . I want when click on button downloaded file and show me download's status in progress view. I can download any file with this…
emma
  • 117
  • 1
  • 6
  • 17
0
votes
2 answers

xcode set progressView by end date

I need you help with UIProgressView. I need update my progress view from current date to end date I choose should be. This Method updates only label and shows how much time remain to end time circle. -(void)updateProgressDate { NSCalendar *cal…
Anton
  • 3,102
  • 2
  • 28
  • 47
0
votes
1 answer

AFDownloadRequestOperation multipleDownload progress for each download

I am using AFDownloadRequestOperation for downloading. i am unable to track the progress of the each download that is in the queue. My progress bar show the progress of the operation on the main thread(which is the last added request). Referred to…
0
votes
0 answers

iOS UI Update and Asynchronous Method

I'm using iOS 6's Social API to send tweets, and I want to have an progress view. Following is the message to show. [self.progressView addStatus:@"Posting to Twitter"]; Since my App would possibly send messages to multiple destinations at the…
fengd
  • 7,551
  • 3
  • 41
  • 44
0
votes
1 answer

UIButton State and progress of selector

I am having a bit of trouble with displaying the progress of a longer mainthread action (needs to be in the main thread). The action is called by pressing a button. -(void)getCSVExport:(id)sender{ ... NSString *filePath = [path…
Sebastian Flückiger
  • 5,525
  • 8
  • 33
  • 69
0
votes
2 answers

MonoTouch.Dialog UIProgressView

How can I implement an UIProgressView with MonoTouch.Dialog? Is there a way to do it without creating a custom element?
0
votes
2 answers

How to custom rectangle progress bar?

I want to custom a rectangle progress bar with UIKIT like attracted image. Is there any source code for that? Cocos2d has the same one with CCProgressTimer but I can't find any UIKIT source code.
0
votes
2 answers

How to update progress bar while large math function executed (objective-c)?

I have math function (about O^(10^7)) and while it searching result I have to display progress. So I have progress bar. The question is, how to update progress bar? I have tried to do it so: self.progressBar.progress = 0.0; self->progress = 0.0; for…
Timur Bernikovich
  • 5,660
  • 4
  • 45
  • 58
0
votes
1 answer

Write file to NSDocument directory show UIProgressView in iPhone?

I have a pdf file from server. Then I need to load the file to NSDocument directory path and its working fine, but i want to show UIProgressView for store each bytes. How to do this , please help me Thanks in Advance I tried to store like this: …
SampathKumar
  • 2,525
  • 8
  • 47
  • 82
0
votes
1 answer

UITableView with cell containing progress bar

I have a table View with 2 types of cells a normal subtitle type cell and a custom cell that contains a progressView. When a delegate calls the finished percent method that cell (only one cell in the table view can have the progress bar) needs to…
user1028028
  • 6,323
  • 9
  • 34
  • 59
0
votes
1 answer

During Save to Camera Roll, how do I determine how much has been downloaded?

I want to display a UIProgressView when the user saves an image to the camera roll. I need to know how much of the image has been downloaded at a given point to determine what the progress indicator should display. How do I determine this? I'm doing…
Steven
  • 1,049
  • 2
  • 14
  • 32
0
votes
3 answers

Use UIProgressView for image editing

In my app I apply filters for the image. I want to add UIProgressView as it takes about couple of seconds to complete the editing. How to add a UIProgressView for such method and also update how many percent it is completed? I have gone through many…
Prerna chavan
  • 3,179
  • 7
  • 35
  • 77
0
votes
1 answer

UIProgressView leaks (WebThreadCurrentContext & GetContextStack)

I'm developing an app (iPad, Xcode 4.6, iOS 6.x) with a modal window and a UIProgressView updated on the main thread that shows two memory leaks once the task monitored by the UIProgressView is completed. If I remove the UIProgressView and thread…
Tim Newton
  • 1,463
  • 1
  • 13
  • 13
0
votes
1 answer

iOS some problems during download multiple images and update UIProgressView

I have this 3 classes. MyViewController.m (click to see code) MySync.m (click to see code) ImageDownload.m (click to see code) When I download a image, I try to update the UIProgressView in my UIViewController, but the update are delayed, and I…
jfrubiom
  • 141
  • 4
  • 11
0
votes
1 answer

Remove the shadow from a UIProgressView?

I've got a simple UIProgressView with a custom colour, I want to lose the Apple shadow, can this be done? [[UIProgressView appearance] setProgressTintColor:[UIColor colorWithRed:5/255 green:72/255 blue:255/255 alpha:1.0]]; [[UIProgressView…
Nathan Cleary
  • 653
  • 8
  • 20