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
1
vote
1 answer

Can I use my NSURLConnection with a UIProgressView?

So in my application I use a NSURLConnection to connect to a server and retrieve text. This is how I initiate my NSURLConnection: NSMutableURLRequest * serviceRequest = [NSMutableURLRequest requestWithURL:postUrl…
SimplyKiwi
  • 12,376
  • 22
  • 105
  • 191
1
vote
1 answer

Custom UIProgressView in iphone

I am working on a custom UIProgressView. Please see attached image. I am very close to it, but I am unable to add the circle at the begining of the pregressbar, like the current progress is 15% so the circle is placed on there. Any Idea ?
SandeepM
  • 2,601
  • 1
  • 22
  • 32
1
vote
1 answer

How to implement UIProgressView to display the progress of a method of another class?

I've been reading about delegate pattern. But answers and examples for this simple work are explained too bad and report many erros, expecially 'cause they are olds and I want to develop it in iOS6 with ARC and Storyboard. (a class "myClass" that…
Alessandro Ornano
  • 34,887
  • 11
  • 106
  • 133
1
vote
2 answers

Resolving the wait situation for a detached thread in IPhone?

I am using a private MBProgressHUD Now I am using the indicator view on my add button in which I am calling my addrecord service . UIWindow *window = [UIApplication sharedApplication].keyWindow; HUD = [[MBProgressHUD alloc]…
harshalb
  • 6,012
  • 13
  • 56
  • 92
1
vote
1 answer

UIProgressView with media framework for music length (Xcode)

Can someone give a full example of how to get the UIProgressView to work with the media framework for music length please, I cant get it to work with ios6 for some reason
user2326633
  • 33
  • 1
  • 7
1
vote
2 answers

Update a progress bar while generating a printed page

I have a class that generates images to be printed by the user. These images are created using QuartzCore (and some UIKit elements) and need to be run on the main thread. In the view visible to the user while the images are being generated, I have a…
Josh Sherick
  • 2,161
  • 3
  • 20
  • 37
1
vote
3 answers

Display UIProgressView with percentage in iOS

How can I display a UIProgressView with a percentage?
Kunal
  • 83
  • 1
  • 2
  • 11
1
vote
2 answers

What's the best way to show the user something is loading on the iPhone?

Recently I've been looking to create some way of showing a user that something is being loaded. I'm sure anyone with an iPhone has seen this is apps before but what is the best way of doing it? I started using UIProgressHUD, however it was pointed…
ingh.am
  • 25,981
  • 43
  • 130
  • 177
1
vote
2 answers

Displaying dialog for progress steps

I'm a fresh IOS dev beginner, I don't know the whole terminology yet (between sheet, modal, dialog, view, ...) Context I have a button that launchs a serie of actions that will take a certain time (maybe 2 or 3 seconds) I would like to show a pretty…
Pierre de LESPINAY
  • 44,700
  • 57
  • 210
  • 307
1
vote
1 answer

How can I load UIProgressView status?

I would like to load the progressview's status, when I start my app again. I have an int, which I save every time. the progressview is full if the int = 18. I used this code: IBOutlet UIProgressView *progress1; -(void)progress1{ [progress1 …
Magyar Miklós
  • 4,182
  • 2
  • 24
  • 42
1
vote
4 answers

Why does UIProgressView not update?

I'm trying to set the progress of a UIProgressView, but the progressView doesn't "update". Why? Do you know what I am doing wrong? Here is my code in ViewController.h: IBOutlet UIProgressView *progressBar; That's the code in ViewController.m: -…
user1940136
  • 343
  • 6
  • 12
1
vote
1 answer

UIProgressView Subclassing for custom Colors

I'm trying to subclass ProgressView to use as a health bar for a game and when I try to override the setProgress, it isn't called. I want the color to change based on the progress float value. Here is the code I tried to use: @interface AHHealthbar…
Ahufford
  • 488
  • 2
  • 12
1
vote
1 answer

How to show UIProgressView with ASIFormDataRequest

I want to show uiprogress bar with ASIFormDataRequest. I googled it but i can't find regarding uiprogressView with ASIFormDataRequest, I just find uiprogressView with NSURLConnection. just let me know if it is possible. // So this my method where i…
1
vote
3 answers

UIProgressView indicator not updating with the correct "progress"

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
1
vote
2 answers

UIProgressView with gradient

Is there a way to make progressTintColor make a gradient one? Specifically I would like to make it a gradient color from green to red - standard temperature mode. Adding sublayer didn't work as it put the layer "behind" the view: CAGradientLayer…
Michal
  • 15,429
  • 10
  • 73
  • 104