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
3
votes
3 answers

How to make UIProgressView to show progress of NSArray loading from file (iPhone)?

I hope it's even possible. I've got code to load really big file (dictionary) after app started: - (void)applicationDidFinishLaunching:(UIApplication *)application { NSString *filePath = [NSString stringWithContentsOfFile:[[NSBundle mainBundle] …
user2631838
3
votes
2 answers

Update UIProgressView in UICollectionViewCell for download file

I'm trying to update the UIProgressView in UICollectionViewCell when I download a file, but sometime the progressView update and sometime doesn't update, and I can't understand why, this is the code to display the…
Piero
  • 9,173
  • 18
  • 90
  • 160
3
votes
4 answers

iPhone - Splash Screen with progress bar

I tried to create a SplashView which display the Default.png in the background and a UIProgressBar in front. But the splash screen is not being updated... Inside my view controller I load first the splash view with a parameter how many steps my…
crashtesttommy
  • 429
  • 3
  • 9
  • 15
3
votes
2 answers

iOS - UIProgressView only updating once

I am loading data from an API and am using a UIProgressView to display how much has loaded. In my viewWillAppear I use Reachability to check that there is an internet connection. Then, if there is, the following line is called 10 times in a…
Patrick
  • 6,495
  • 6
  • 51
  • 78
3
votes
1 answer

How to make UIProgressView standard rectangle, without rounded corners?

The UIProgressView by default has rounded corners. How can I get rid of those rounded corners? I wish to have a standard rectangle view. I have tried progressView.layer.cornerRadius = 0;, but no use.
Jackson Tale
  • 25,428
  • 34
  • 149
  • 271
3
votes
6 answers

I want to display UIProgressView on UIAlertView

I want to display UIProgressView on UIAlertView for displaying the processing of uploading of the file. But I have searched too much and also find on that link but sill unable to do that. I don't get idea from this If anyone know the easiest way to…
user1487562
  • 139
  • 1
  • 1
  • 9
3
votes
2 answers

AFNetworking setImageWithURLRequest show progressbar during image downloading?

How to show a progressbar during image downloading? My code here: [picView setImageWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:picURL]] placeholderImage:[UIImage imageNamed:@"placeholder.png"] success:^(NSURLRequest *request,…
webmastx
  • 683
  • 1
  • 8
  • 30
3
votes
1 answer

Why isn't UIProgressview progress bar resizable?

From Bavarious' question about UIProgressViews here: I tried implementing what Dave DeLong said and I did everything the exact way he showed in his example, but when I run the program, my progress bar becomes a stretched image if I try changing the…
Seany242
  • 373
  • 7
  • 20
2
votes
1 answer

UIProgressView with bubbles?

In the UINavigationBar, I want to put a hybrid of UIProgressView & UIPageControl to show the user what step (page) of the sign up flow they're on and how many steps are left. It look like the following UIProgressView except with…
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
2
votes
5 answers

UIProgressbar update method

Hello i'm trying to write a method that update a UIProgressbar ! The problem is that when both of values arrive fine to the method (NSLog display values) the division operation generate a bad_access when i run the application !! I tried many…
Bechir
  • 202
  • 2
  • 7
2
votes
1 answer

iOS setting Progress bar value while images are being processed

I have an app processing a couple of images using Quartz, and i wanted to have a UIProgressView that changes after each actions. (e.g. 0.0 0.2 0.4 0.6 0.8 1.0) The problem is, it seems while my image is being processed the UI is completely locked,…
Shai Mishali
  • 9,224
  • 4
  • 56
  • 83
2
votes
1 answer

Update UIProgressView progress via delegate

So I have this weird issue with a UIProgressView. I run a background task via Alamofire fetching some objects through a custom api. Each time a group of objects gets fetched I want to show that through that progressView. However, the progress…
snksnk
  • 1,566
  • 4
  • 21
  • 46
2
votes
3 answers

Update UIProgressView from background

I have a tab bar application with three tabs. In my second tab view i have a UIProgressView. I have a NSTimer in my viewDidLoad method which calls a method which updates the progressView progressTimer = [NSTimer scheduledTimerWithTimeInterval:1.5…
Neelesh
  • 3,673
  • 8
  • 47
  • 78
2
votes
2 answers

Know the download progress for update an UIprogressView

my app downloads a video from internet and saves it in the iPhone. I'm using this code NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease]; [request setHTTPMethod:@"GET"]; NSError *error; NSURLResponse…
JAA
  • 1,024
  • 3
  • 20
  • 34
2
votes
1 answer

how to still show the progress of progressView after reloading the view controller?

this is my first question on swift, i couldn't really find any answer in the internet. i have a download button that download a pdf file from url, and there is a progressView that shows the progress of downloading to the user. everything works fine…
Sam
  • 67
  • 1
  • 6