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

Avoid UITableViewCell updating content when scrolled

I've found some similar questions already on SO, but nothing that seems to address this specific problem. I'm using a UITableView with around 25 dynamic cells. Each cells contains a hidden UIProgressView. When the user taps on the download button…
beev
  • 1,197
  • 2
  • 16
  • 33
-1
votes
4 answers

How to create view programmatically outside a view controller

Currently I'm trying to create a UIProgressView that will be called with a manager class: func addProgressBar() { let rect = CGRect(x: 10, y: 70, width: 250, height: 0) let progressView = UIProgressView(frame: rect) …
SwiftyJD
  • 5,257
  • 7
  • 41
  • 92
-1
votes
1 answer

Specified the scroll of a UIScrollView with an UIProgressView

I would like to add a progress bar under the navigation bar which will indicate the progress of the scroll of a UIScrollView, I use (not work) : I do - (void)scrollViewDidScroll:(UIScrollView *)scrollView { self.progressView.progress =…
victor bill
  • 209
  • 2
  • 15
-1
votes
1 answer

Progress bar not showing whilst retrieving data from web APIs

Swift 3/Xcode 8/ios 10 I have a method that fetches a bunch of data from a few api endpoints. I pick out the bits I want to keep and then format and print that data to a text file. When the app starts up, it checks to see whether or not the text…
Rossco
  • 37
  • 5
-1
votes
2 answers

Update UIProgressView each 5 Minutes from current Time

in my app I have a UIProgressView that needs increase by +0.1 every 5 minutes. The method for doing this, but I know I have a problem, because I would like the calculations progressview five minutes even if my application is then closed should rely…
kAiN
  • 2,559
  • 1
  • 26
  • 54
-1
votes
2 answers

Resume the progress view progress from certain point

I have a custom circular progress bar in UITableViewCell. [progressView setAnimationDuration:10.0]; [progressView setProgress: 1.0 animated: YES]; To stop the progress at certain point I am using below code: [progressView setProgress: 0.5…
-1
votes
2 answers

IOS UIProgressView bar is not updating, can anyone tell why?

I started messing around with the UIProgessbar and then I started having issues with it not updating the view. Here is my code in view did load: progressViewBorder = [[UIView alloc] initWithFrame:CGRectMake(0.0f, …
Kevin Pimentel
  • 2,056
  • 3
  • 22
  • 50
-1
votes
1 answer

iOS : Progress view for File Uploading to server?

I want to implement Progress view for File Uploading to the server, can any one guide me with example if i use - (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten …
Velu Loganathan
  • 241
  • 2
  • 11
-1
votes
3 answers

Objective-C Time Delay

I want to be able to execute a delay every time that a function loops through a loop. I already have a loop setup, as shown below: for (float batteryPercentage = 1; batteryPercentage <= 0; batteryPercentage -= 0.01) { double…
James
  • 717
  • 2
  • 6
  • 9
-1
votes
1 answer

How to implement a progress bar on top of UIWebView?

I am developing application for iOS7 in xcode 5. I have a view controller ADMSViewController The .h file is as follows #import #import "IMTWebView.h" @interface ADMSViewController : UIViewController…
user2541457
  • 71
  • 1
  • 8
-1
votes
1 answer

setProgress: animated: not working (during HTML parsing)

I parse HTML Data from a Website with the help of the TFHppleElement. Now during the parsing in the for loop I want to update the progressView but it isn't working. Why? My Code: ParseHTMLData.m for (...) { ... for (...) { …
iCode
  • 1,456
  • 1
  • 15
  • 26
-1
votes
1 answer

Backwards progress bar (countdown)

I would like to take a UIProgressView and link it with an NSTimer (20s) and have the progress bar "countdown" smoothly with the timer. It seems that the information I have found on this isn't quite agreeing with me. Can anyone tell me how to do…
Maegan
  • 273
  • 1
  • 10
-1
votes
1 answer

UIProgressView hides when scroll the tableview

In my iphone app i am having a button, when I click on the button, download operation starts and i am replacing the button with UIProgressView. This UIProgressView will show the download progress. But once a UIProgressView is added, when I scroll it…
-2
votes
2 answers

how to change background progressView circle from color to an image?

I want to make a progressView circle. I followed one sample code that was working with background color but now I want to use background image instead of the background color. This is the current sample code : Sample Code Please see this sample code…
user3797431
  • 393
  • 1
  • 5
  • 15
-2
votes
1 answer

How to set width of a progress view

Is there any normal way to set one simple thing as it is a width of a UIProgressView? Most of the questions on the web are about the height, but I cannot believe that there is no normal way of setting weight programmatically? Does anyone has any…
SteBra
  • 4,188
  • 6
  • 37
  • 68
1 2 3
36
37