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

How to update UIProgressview in Tableviewcell?

after i add UIProgressview into cell.contentview , how can i access to update Progressview on that cell ?
RAGOpoR
  • 8,118
  • 19
  • 64
  • 97
0
votes
1 answer

ProgressView Issue in Android?

I am using this Example to Create ProgressView and It work fine. But In My SplashScreenActivity How can I Stop the ProgressView when the AsyncTask is done.And I can't found how to Stop this ProgressView. Any Help be Appreciated.
Harshad
  • 1,344
  • 1
  • 10
  • 25
0
votes
2 answers

UIProgressView - Progress Bar - SpriteKit / Swift

I'm hoping to use a progress bar to denote a percentage in my App. I'm actually building it in Spritekit using Swift, so I'm hoping to do it programmatically, without the use of a storyboard etc. I found this awesome tutorial, but unfortunately I…
Reanimation
  • 3,151
  • 10
  • 50
  • 88
0
votes
2 answers

UIProgressView progess completion at end of audio

I have a progress view that represents the playing/progress of a audio track as it is played. 1.0 represents 100% completion of that progress view of course. What I need to accomplish is the progress view's progress gradually increasing throughout…
Mike Simz
  • 3,976
  • 4
  • 26
  • 43
0
votes
0 answers

Custom progress view

I want to do a custom progress view for my iOS app, with 2 dots. Here is my code: import UIKit @IBDesignable class StepProgressView: UIView { @IBInspectable var progress: Float = 0 var progressColor = UIColor.blackColor() var bgColor…
Florentin
  • 1,433
  • 2
  • 13
  • 22
0
votes
1 answer

No calls occurring for observeValueForKeyPath for UIProgressView in Swift

With the help of this tutorial I was adding a progress bar to my view with Swift but the observer does not get any calls of itself. // ViewController.swift import UIKit import WebKit class ViewController: UIViewController, WKNavigationDelegate…
DevDavid
  • 195
  • 1
  • 1
  • 18
0
votes
2 answers

Use Core Data to Insert data asynchronously in Swift with UIProgressView

I receive a JSon that I convert to a array of dictionaries and insert this array to Core Data. The result of this Array has 8.000 items. How to insert an UIProgressView while the Core Data is working with the code bellow? Thank you! func…
0
votes
1 answer

Will the progressView get automatically updated with a call to a updateProgress

When you set or update the float for the progressView does it automatically update the progressView? such as calling a method: - (void) updateProgress:(float)progress{ [self.progressView setProgress:progress];}
3rdeye7
  • 536
  • 4
  • 25
0
votes
1 answer

Issues while placing UIProgressView in UITableViewCell

I have placed a UIProgressView in UITableViewCell. There are two issues I am facing : 1. UITableView scroll is getting hindered. 2. UIProgressView setProgress is called each time (obviously) which sets its progress each time it appears. It is…
Nitish
  • 13,845
  • 28
  • 135
  • 263
0
votes
1 answer

Multi-threaded progress bar concurrency issue outside the main view controller

I've found so many solutions for progress bar update within the same thread and view controller, however they seemed to be not similar cases as mine. In my application, the main view controller calls loadIntoCoreData()(implemented in class…
whitney13625
  • 583
  • 1
  • 9
  • 28
0
votes
2 answers

Parse.com - Download Objects From Database - Show Progress With ProgressBlock

I have Parse class called Product that has 238 rows. Note that this class is not the Parse.com implementation of Product, it is a custom class implemented by myself, as I didn't require all the columns Parse adds to their Product class. The Product…
BeniaminoBaggins
  • 11,202
  • 41
  • 152
  • 287
0
votes
0 answers

How to assgin multiple different images to UIProgressbar in iOS?

in my application want to assign 6 different type of images on progressbar. All image shapes are different. some images are circle ,some images are square and some are oval etc. So i want to create custom progressbar . Please resolved my problem
Monika Patel
  • 2,287
  • 3
  • 20
  • 45
0
votes
1 answer

UIProgressView-like in WatchKit

I have my app containing UIProgressView. One day I want to build its extension on WatchKit and want UIProgressView on that too, but there is no such a thing on the object library. What could I do?
BlueBookBi.
  • 39
  • 2
  • 9
0
votes
1 answer

Setting UIProgressView progress to 0

I have a UIProgressView which runs for 2.5 seconds however sometimes, like if the app is being resumed from multitasking, the loading bar will start halfway up. How would I reset the UIProgressView to 0.0 each time it is opened? I could set to 0 in…
dwinnbrown
  • 3,789
  • 9
  • 35
  • 60
0
votes
3 answers

Create a UIProgressView to go from 0.0 (empty) to 1.0 (full) in 3 seconds

Basically I want to create a UIProgressView to go from 0.0 (empty) to 1.0 (full) in 3 seconds. Could anyone point me in the right direction for using NSTimer in swift with UIProgressView?
dwinnbrown
  • 3,789
  • 9
  • 35
  • 60