Questions tagged [uiprogressbar]

UIProgressBar is a common misrepresentation of UIProgressView, which typically presents a bar-like user interface to show the progress of a task over time.

UIProgressBar is a common misrepresentation of UIProgressView, which typically presents a bar-like user interface to show the progress of a task over time.

Please use for all posts regarding a progress interface element on iOS.

62 questions
1
vote
0 answers

How to create a dynamic stepped Progress Bar in swift?

I have an existing app, wherein upon opening the app the default steps in progress bar are UserType, Credentials, Email, Password, Confirm Password, Agreement and Done, The app requires some changes when it comes to its Stepped Progress Bar, by the…
Titus
  • 349
  • 4
  • 19
1
vote
1 answer

How to AVAudioPlayer with progress bar show using swift?

I'm playing a song using AVAudioPlayer. I need a progress bar to show the progress of the song. My issue is that the progress bar's progress isn't working properly. Within 2-3 seconds, it finishes its progress. func playMusic() { do { …
Digvijaysinh Gida
  • 381
  • 1
  • 7
  • 20
1
vote
1 answer

NSURLConnection and ProgressBar Crash when try to convert to float

i am trying to use progressbar while downloading using NSUrlConnection am missing somthing but dont know what see my code in my .h i have NSMutableData *receivedData; NSNumber *FileSize; which i use to calculate a precent for…
Bosoud
  • 158
  • 4
  • 24
1
vote
3 answers

Width and height of progressView

How can I create progressView with width 100 and height 200. And rotate progressView on 90 degrees? It does not work together. Or progressView is turned by 90 or change size self.progressView.transform = CGAffineTransformMakeRotation(M_PI_2); …
user6520075
1
vote
0 answers

Static and customize Progress Bar Swift 2.0

Since I'm new to learning Swift I might not be explaining this right in Swift... but here goes. I have to use a progress bar for sport prediction apps. So I want a custom progress bar to remain in a constant value to explain the prediction for…
1
vote
1 answer

Does not upgrade the progress bar when coming back in UIViewController

I am performing a download through Download Manage class and updating a progress bar view according to the received bytes in the delegate connection didReceiveData. Everything is working fine when I am on the page where downloading is happening but…
1
vote
1 answer

Increase a Progress bar value on a UIButton press in Swift

Okay let me give you an overview of what happens so far. I have three questions in an array. Every time the 'Next' button is pressed, it will slide to the next question in the array. What I would like to happen, is when the next question in the…
Nick89
  • 2,948
  • 10
  • 31
  • 50
1
vote
1 answer

UIProgressbar in Cococa Touch

I want to display an UIProgressbar depending on the amount of data downloaded from the server. One way I implemented is I made a NSURLConnection and set the delegate. The - (void)connection:(NSURLConnection *)connection…
Biranchi
  • 16,120
  • 23
  • 124
  • 161
1
vote
0 answers

UIToolkit UIProgressBar methods changed Unity

I'm developing a 3D game with Unity and in order to build the button I use UIToolKit. I saw a tutorial which showed how to create a UIProgressBar with UIToolKit, the problem is that it was from 2 years ago and the methods to create a UIProgressbar…
1
vote
1 answer

Custom UIProgressView in iphone

I am working on a custom UIProgressView. Please see attached image. I am very close to it, but I am unable to add the circle at the begining of the pregressbar, like the current progress is 15% so the circle is placed on there. Any Idea ?
SandeepM
  • 2,601
  • 1
  • 22
  • 32
1
vote
1 answer

Keep track of download progress UI independantly

I'm working on a magazine app(without newsstand kit) for iOS. There are 3 magazines and each magazine has 3 issues. My main view controller represent Magazine shelf, and magazine button will navigate to the their issue shelf(view controller) when…
Ghostino Doggio
  • 351
  • 1
  • 4
  • 11
1
vote
1 answer

progressBar moving irrevently

i'm using a progressbar to show upload percentage of a file uploading to ftpserver, for the first time it is updating well,when i cancel the upload and and again id i start that. for 50% of upload progress bar is filling ,for third time for 25%…
KMKR
  • 109
  • 1
  • 12
1
vote
2 answers

how to hide progressview when webview load

hi I want to ask a simple question how I can hide or disable progress bar when UIWebView load, I add ProgressBar as subview of webview . I did it by using this way in the method below, but it can't help me because every site take different time to…
Adnan Qadir
  • 35
  • 1
  • 6
1
vote
2 answers

Function call in background thread in iOs

In my iPhone application, I have a button and on the button click I call a web service and getting some links, and after that I need to download the files in those links. On the button click a pop up view will come up and on "OK" click, the button…
0
votes
1 answer

UIWbView multiple URL loading with UIProgressView in iPhone SDK

I am trying to create an iPhone app as in the fig below: In this i am dynamically adding some imageviews dynamically into a uiscroll view. Each imageview contains a UIButton and UIProgressView. When click on each it should different urls and the…
Mithuzz
  • 1,091
  • 14
  • 43