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

iPhone - How to show progress bar when uploading an image to the server?

I want to display a progress bar, when user will upload any image to the server. my image is uploading successfully to the server using php url. But for this i am not using any NSUrlConnection class. Actually i am uploading multiple of images from…
Raghu Kaligipula
  • 404
  • 2
  • 5
  • 14
0
votes
1 answer

Updating uiprogress bar in cell rows

I am building an app that will allow users to download and read issues of a journal. I am using the Download Manager framework created by Robert Ryan and I modified the test project that came with the framework to have it work in my project (there…
bachma0507
  • 1,543
  • 2
  • 11
  • 22
0
votes
1 answer

UIProgressView in UITableViewCell has poor scrolling in iOS 7

I have run into an issue where having a UIProgressView as a subview of a UITableViewCell on iOS 7 makes the scrolling performance really poor. This issue doesn't really happen in iOS 6 or below and the scrolling is really great. I was wondering if I…
Pete42
  • 916
  • 7
  • 15
0
votes
1 answer

Is it possible to add an element to the bottom tool bar of a navigation controller?

I want to add a progressview and an activity indicator view to the tool bar that come at the bottom of the navigation controller. But when I drag and drop it, it becomes applicable to the whole window? How can I do it?
wolverine
  • 2,967
  • 5
  • 31
  • 35
0
votes
0 answers

Any chance to update a UIProgressView while NSKeyedUnarchiver?

in my app, I save arrays in core data with NSKeyedArchiver. Then, I use the following code when the data is needed (to feed Core Plot) : dispatch_queue_t backgroundQueue = dispatch_queue_create("com.mycompany.myqueue",…
jcr
  • 303
  • 1
  • 6
  • 16
0
votes
1 answer

Manage multiple progress view in tableview

i have a table where in each dynamic cell there is a label with a URL and a progress view. How can i use the progress view to show the progress of each download from the URL of each cell??
0
votes
1 answer

How to make animation move slower on progress bar

[UIView animateWithDuration:10000 animations:^{ [self.RecomendedBar setProgress:self.whatProgressbarShouldBe animated:NO]; }]; It's pretty obvious that I set progress within an animation block whose time I set at 10k Yet it's still so fast.…
user4951
  • 32,206
  • 53
  • 172
  • 282
0
votes
1 answer

When changing view controllers NSURLConnection delegate not updating the progress bar

I am performing a download through NSURLConnection class and updating a progress bar view according to the received bytes in the NSURLConnection delegate connection didReceiveData. Everything is working fine when I am on the page where downloading…
MeghaJain
  • 164
  • 1
  • 1
  • 8
0
votes
1 answer

progres bar not showing ios

I use the following code to get the tap on image view and navigate to another view controller: -(void)tapDetected:(UIGestureRecognizer *)recognizer{ [MBProgressHUD showHUDAddedTo:self.view animated:YES]; NSLog(@"single Tap on…
Kamal Upasena
  • 1,329
  • 4
  • 13
  • 38
0
votes
1 answer

add ui progress view ios

I use the following code to download a JSON from a web service. NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"my web service "]]; NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil…
Kamal Upasena
  • 1,329
  • 4
  • 13
  • 38
0
votes
1 answer

How to display download progress - or should it even be displayed

I think I have the in-app purchase functionality for my app working now, except for a progress bar for downloads from Apple servers. I'm wondering now whether I should display a progress bar or not. What say you? If I should display one, how should…
Victor Engel
  • 2,037
  • 2
  • 25
  • 46
0
votes
1 answer

progressview to represent the playback-iphone

I have created an application which plays music files ia avaudioplayer. I need to show a progressview in the view to represent the play back of the song. Start from zero and end at the end of the song. How to implement that??? pls help...
Nithin
  • 6,435
  • 5
  • 43
  • 56
0
votes
1 answer

Animate UIProgressView backward as well as forward

I am currently using iOS 7's UIProgressView to keep track of user activity which progress both forward and backward. I am using the built-in animation settings such as: [self.myProgressBar setProgress: 0.50 animated: YES]. I notice that the…
daspianist
  • 5,336
  • 8
  • 50
  • 94
0
votes
1 answer

Adding independent Progress VIew for indicate download in iCarousel

Good afternoon. I use in my application iCarousel . At the moment I can not make Progress View each item carousel. The problem is that when I click on the "Download button" Progress View have added an item first . He appears fine and works , but…
Emmett
  • 464
  • 5
  • 11
0
votes
3 answers

How to initiate UIProgressView to a certain value?

Would it be in the .h or .m and how do I do this?
Devoted
  • 177,705
  • 43
  • 90
  • 110