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

UIProgressView constraints issue

I have a UIProgressView that is programmatically added to a storyboard view along with constraints that place it along the bottom of the navigation bar. There is a menu that when opened temporarily hides the navigation bar and when closed unhides…
bhartsb
  • 1,316
  • 14
  • 39
1
vote
2 answers

UIProgressView as health bar and update when button pressed. Swift

So I started making a game and I wanted to use a progress bar as a health bar for many different things and I couldn't figure out why it wasn't updating at all. It did, however, update in the viewdidload function. Here is the code that I am…
samando
  • 140
  • 1
  • 1
  • 10
1
vote
1 answer

How can i simply used progress view in my app

I am trying to save image to the photos album from my app using the following code: -(void)download:(UIButton *)downloadbtn{ j=320*downloadbtn.tag; selectedIndex=downloadbtn.tag; NSData *data=[NSData dataWithContentsOfURL:[NSURL…
Ketan Jogal
  • 58
  • 10
1
vote
2 answers

How to read the value of Progress View?

For filling the Progress Bar, there're 2 objects connected to ViewController.swift file. @IBOutlet var progBar: UIProgressView! @IBAction func butPressed(sender: UIButton) { self.progBar.progress += 0.1 But when I try to read the value of the bar…
1
vote
1 answer

Link NSTimer with UIProgressView

I have a 45 seconds countdown made with a NSTimer which look like this: -(IBAction)Start { mainInt = 45; timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(countDown) userInfo:nil repeats:YES]; } - (void)countDown…
1
vote
1 answer

Eclipse progress view stop button listener

I develop an eclipse plugin, and I created an progress view which indicates where the work runs. Everything works correctly, but I have a question. When I made this view an stop button appeared on it. But I haven't found any listener to control…
Joe Teght
  • 11
  • 1
1
vote
0 answers

Get exc_bad_access error code when using SDWebImage and UIProgressView

I'm using UICollectionView + SDWebImage to display image grid. In custom cell, i defined UIProgressView to display progress bar for display image loading progress. Here is my…
TomSawyer
  • 3,711
  • 6
  • 44
  • 79
1
vote
1 answer

UIActivityIndicatorView+AFNetworking or UIProgressView+AFNetworking

Can you help me to understand, how to use UIActivityIndicatorView+AFNetworking or UIProgressView+AFNetworking. Do I need to create one more UIViewController and if yes, where do I need to implement it? have found out that I need to use…
1
vote
1 answer

how to use progress view using images?

I want to use progress view using custom images for that i wrote following code in viewDidLoad, UIView *v = [[UIView alloc] initWithFrame:CGRectMake(20, 281, 260, 33)]; v.backgroundColor = [UIColor darkGrayColor]; progressTest = [[customprogress…
Ankit Gohel
  • 77
  • 11
1
vote
2 answers

iPhone: how do I set up a clear window-size "blocker view"?

I feel like this should be obvious to me, but for some reason I can't figure this out. I have a navigation interface with nav bar, tool bar, and primary view. Sometimes the user takes an action that causes a progress indicator to appear in the…
Ben Zotto
  • 70,108
  • 23
  • 141
  • 204
1
vote
0 answers

custom UIProgressView class works on 64 bit device but not others

I have a custom UIProgressView class (from John Rommel Estropia) which works perfect on 64 bit iPhone simulator and device. But when I run it on 32bit simulators/devices it did not show on the screen? Any idea? This problem also valid for another…
1
vote
1 answer

UIProgressView+AFNetworking not updating progress

I am trying to use the category UIProgressView+AFNetworking from AFNetworking UIKit. I have an operation that uploads photos to a server. Mulitple photos at once. But my progress view isn't updating at all. In my UIProgressView I use [progressView…
SleepNot
  • 2,982
  • 10
  • 43
  • 72
1
vote
1 answer

Reset UIProgressView and begin animating immediately

Imagine I have a UIProgressView that is showing the progress of some task (in this case triggered by a timer at a set interval). Under normal circumstances this works fine. It starts off at 0, so in my initial call to animate the progress view,…
Senseful
  • 86,719
  • 67
  • 308
  • 465
1
vote
0 answers

iOS Progress View with background image and highlighting

I've been searching around cocoa controls and haven't been able to find a progress view that can give me a background image and it puts highlights the image with a color as the progress continues. For reference I am talking about something as…
Paulius Dragunas
  • 1,702
  • 3
  • 19
  • 29
1
vote
0 answers

UIProgressView disappears after focus UISearchBar

I have a custom UINavigationController which has an UIProgressView inside. All works fine except, UISearchBar in child ViewController. As soon UISearchBar is active, the UIProgressView moves up. If I cancel UISearchBar input, the UIProgressView…
TUNER88
  • 923
  • 1
  • 20
  • 36