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

ProgressView iOS8/Swift

I am trying to set track and progress images for a progressview. What i have tried is setting the images in the interface builder and by code. Both are not working. I have read that this is a bug that was also present on iOS7. So far i haven't found…
EricDXS
  • 882
  • 9
  • 11
0
votes
1 answer

UIProgressView is not updating in iOS

In my project am downloading data from server, downloading code is in App Delegate.m file and once am passing downloading status(in bytes) to NSNotification object. In my ViewController am trying to update UIProgressView using the above downloading…
Naveen Kumar
  • 177
  • 2
  • 2
  • 11
0
votes
2 answers

Adding activity indicator to alert view

I want to add an activity indicator to alert view, so that the user waits while file download operation is in progress. I checked one of the post, it says addSubView doesn't work on UIAlertView in iOS 7 and above, so someone suggested…
Amit
  • 125
  • 8
0
votes
2 answers

How can I use progressView during URL is loading?

I want the progressView working while my URL is loading. What should I do for that? here's my .m code: -(void)openURL{ UIWebView *webView = [[UIWebView alloc] init]; [webView setFrame:CGRectMake(0, 0, 320, 460)]; [webView loadRequest:[NSURLRequest…
0
votes
0 answers

ASIFormDataRequest upload progress is not accurate

Iam using ASIFormDataRequest for uploading and downloading. The download progress is very accurate and finished when the download finish, but the upload progress jumps from 0 to 1 rapidly even the upload didnt finish yet. Below the upload request…
0
votes
3 answers

working with UIProgressView to set progress bar to 30 minutes

I'm working on an project were I have put in a progress bar and then set a button to start the progressbar when it is pressed. The thing is that I want to have the progress in 30min when you pressed the startbutton, so I need help to set it to 30…
Andy
  • 175
  • 2
  • 3
  • 11
0
votes
1 answer

iOS UIProgressView with 2+ colors

I'm developing an iOS app to show total disk space, available disk space and disk space usage by the app itself. I've successfully showed the total disk space and available disk space in UIProgressView but I need to show the app usage space in the…
0
votes
1 answer

Progress View with UIView indicator

Hi guys i'm stuck with this problem. I need to create a behavior like this one in the image. I created a UIView xib (because i need to reuse this view) with a UIProgressView for the 'dark orange' fill and then create an UIView for the indicator…
javal88
  • 1,188
  • 3
  • 17
  • 29
0
votes
2 answers

UITableViewCell as progress indicator

I am trying to set the whole cell background view to show a progress indicator. if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"Cell"]; UIProgressView *progressView =…
CodeWeed
  • 971
  • 2
  • 21
  • 40
0
votes
3 answers

GCD and progressHUDs

Using any form of progressHUD (SV, MB, etc) I run into this problem where the HUD is either hidden right after it is displayed or stays there permanently. In the below example, the HUD stays permanently, regardless of if the twitter feed (or page…
jclark754
  • 914
  • 2
  • 12
  • 30
0
votes
1 answer

UIProgressView is not displaying custom track image

I have been trying to implement a UIProgressView to display the percentage of a users budget that they have used so far. I don't want to use the standard progress bar so have been trying to implement a custom one. I am having issues with the custom…
user3746428
  • 11,047
  • 20
  • 81
  • 137
0
votes
1 answer

UIProgressView Value From Storyboard

Hi so this might seem like a very trivial question to most people but its really caught me off guard. I'm using storyboards to create my app and when a user signups for the first time they are taken through an "intro". I have a UIProgressView to…
cjbatin
  • 283
  • 2
  • 16
0
votes
1 answer

UIProgressBar animation is not smooth

I have a UIProgressBar which is updated in a HTML Parsing for loop. But it is not updating smoothly. I want it to show a smooth increase. I have tried to put in async_dispatch but then it didnt update at all. Here is my code: - (void)viewDidLoad { …
birdcage
  • 2,638
  • 4
  • 35
  • 58
0
votes
1 answer

Effect of UIView coordinate system on circular version of UIProgressView

I need a class derived from UIView that indicates progress by filling an increasingly large sector of a circle (as progress goes from 0 to 1 its angle should grow by 2 PI). It's like a circular version of UIProgressView. The following code does not…
Drux
  • 11,992
  • 13
  • 66
  • 116
0
votes
0 answers

How to add progressbar for downloading image IOS7

Hi in application i have image in my UIImageView i want to download the image and saving in the photolibrary. Now i want to show the downloading progress to the user and give the alert message image saved in photolibrary please tell how to achieve…
Shanthanu
  • 421
  • 1
  • 9
  • 31