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

UIPregressView Upload Image with AFNetWorking

I'm new in iOS Development. I create Upload Image Method with "AFNetworking". And I want to Add UIProgressView when Processing. Now I use "DejalBezelActivityView" in my Upload Method "DejalBezelActivityView" is worked but i want to use…
Natthawat Sudsang
  • 523
  • 1
  • 5
  • 13
2
votes
2 answers

IOS - UiProgressView - Trigger event at 100%

I have built a loader screen that displays a loading message and a uiprogresview whilst 4 separate data refresh methods are running - each data refresh method has a completed function - which basically adds .25 to the loader as follows -…
Dancer
  • 17,035
  • 38
  • 129
  • 206
2
votes
1 answer

AFNetworking 2.0 + UIProgressView how to correctly display progress for an upload session

I'm using an AFHTTPSessionManager subclass to download and upload data through webservices. Everything seems to work fine except for the upoload progress view, I'm using UIProgressView+AFNetworking category. Code is set like that: NSURLSessionTask…
Andrea
  • 26,120
  • 10
  • 85
  • 131
2
votes
1 answer

iOS border in UIProgressView

is there any way to add border around UIProgressView in iOS7? I dont find any property in storyboard. I've try do it like that also: progressView.layer.borderWidth = 0.07; but it gives me only border on top and bottom of progressView but not on the…
AYMADA
  • 889
  • 3
  • 17
  • 37
2
votes
2 answers

How do I show the progress of a PFFile download inside a PFImageView

Does anybody know how to set the Progress View Bar for a PFImageView, that is downloading a PFFile from (Parse.com)? I can't find any tutorials on how to do so. (I don't want to set an activity indicator since I'm loading an image and I want the…
2
votes
1 answer

UIProgressView how to make it circular

I'm moving the first passes with iOS programming. I want to make a progress bar circular, can someone tell me how to make it?
user3227071
  • 51
  • 1
  • 2
2
votes
2 answers

UIProgressView height

UIProgressView height is different when displayed in iOS 7.0 it's not 9 as the interface builder is showing. I am trying to transform progressView to increase height. because 9 is too small. and because original size of the progress view is not the…
hasan
  • 23,815
  • 10
  • 63
  • 101
2
votes
3 answers

UIProgressView doesn't change when 0.0 < progress < 0.03

I have a UIProgressView that I'm using to visually represent a one-minute timer. Its width is 280 pixels. I'm using NSTimer to gradually decrease the value of 'progress', starting at progress=1.0. 'Progress' gets updated once every tenth of a…
justin
  • 21
  • 3
2
votes
0 answers

UIProgressView doesn't draw if value has many fraction digits

I'm using a "custom" progressView and set the progress property a value like '0.3' If i code the progressView hardcoded like so self.progressView.progress = 0.3; the progress gets drawed... if I call a method which returns a float in a switch-case…
Christian 'fuzi' Orgler
  • 1,682
  • 8
  • 27
  • 51
2
votes
1 answer

Updating progress bar for a download-- NSURLConnectionDataDelegate didReceiveData gets only called once

I am trying to download small PDF files 1-2Mb maybe 5 Mb at most. I am working on SelectionViewController.m class which has a UIProgressView called progressBar and it also implements the NSURLConnectionDataDelegate protocol. The funny thing is that…
Bilal
  • 216
  • 1
  • 5
2
votes
1 answer

how could I implement such effect of progress bar in iOS

I have customized track image and progress image, the point is I don't want them to be with the same width. But it seems like when I use setTrackImage and setProgressImage, they always keep the same wide. Now my implementation turns out as the first…
kenshinji
  • 2,021
  • 4
  • 25
  • 39
2
votes
2 answers

Converting between unique NSIndexPath and unique NSUInteger (or int)

Is there a better way than what is proposed here to create a one-to-one mapping between an table view cell's NSIndexPath and a unique NSUInteger or int, in order to create a unique tag property value for a widget in the cell (a UIProgressView)? The…
Alex Reynolds
  • 95,983
  • 54
  • 240
  • 345
2
votes
3 answers

UICollectionView - Instance of subview duplicated in other cells

First of all, a rough description of my app is a Magazine Library app for a particular organisation. I have a customized UICollectionViewCell done up with a storyboard prototype. In the prototype are 3 views - UIImageView, UILabel,…
user2570984
2
votes
1 answer

Android custom progress view

I am building a custom like progress view as in Samsung S Health app. Shown below is the screen shot. I am able to build a circular view something like this: But not sure how to build like the S health one (ellipse shape). Did any of you tried or…
suresh cheemalamudi
  • 6,190
  • 11
  • 49
  • 67
2
votes
1 answer

Progress bar linking to a music button

In Xcode, I have set my buttons to play a music clip which will last 40 seconds. My question is how do I link up a UIProgressView to the music playing? For example, if the song is half way through, the progress bar will display that.