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

Update UIProgressView while posting video to php

I am trying to figure out how to update my UIProgressView while i upload a video to my server. The video is a user picked video, here is my code to upload to my server: NSMutableArray *array = [[NSMutableArray alloc]initWithContentsOfFile:[self…
Jacob
  • 1,459
  • 2
  • 19
  • 32
0
votes
1 answer

How control volume of device by a progress or slide bar by our application?

I have an application in which i have set a notification. When notification raise then sound of that is according to device's volume level. So i want to add a progress bar or slider to control device's volume level in my view. For example u have a…
iRavan12
  • 101
  • 6
0
votes
1 answer

Advice how to present calculation of #records

I have an app that have a lot of records that i am loading into a core data DB. The actual loading is done in a module called "loadDBRecords". This module is called from "MainViewController", which is connected to "MainViewController.xib". As the…
PeterK
  • 4,243
  • 4
  • 44
  • 74
0
votes
1 answer

Why UIProgressView fills its progress bar first when i write myProgressView.hidden = FALSE?

I am sending a string to a web server from my iphone application. I am using UIProgressView to show the progress of request. Following is my code: -(IBAction)sendToServer:(id)sender{ NSString *url = [RequestUtil getWebURL]; NSString *jsonString =…
Piscean
  • 3,069
  • 12
  • 47
  • 96
0
votes
0 answers

ProgressView not updating in swift ios

I know this question asked many times on StackOverflow, But I already tried a lot of suggestions and tricks but not working the methods. I got a progress update from SwiftEventBus and I am trying to update ProgressView like the below in…
Tushar Lathiya
  • 940
  • 9
  • 26
0
votes
1 answer

uiprogressview jumps to 99% then 100% using ASIFormDataRequest

I'm trying to implement a UIProgressView for an image upload so I set it up with uploadProgress = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault]; [uploadProgress setFrame:CGRectMake(85, 19, 150, 9)]; imageRequest =…
Andrew Park
  • 1,489
  • 1
  • 17
  • 26
0
votes
1 answer

UIProgressView reveal progressImage image

I have a UIProgressView and I'm giving it a progressImage that I'd like to reveal as the progress bar progresses. How can I do this? What currently happens is the whole images always fits inside the progress bar, it just gets compressed. I'd like…
s g
  • 5,289
  • 10
  • 49
  • 82
0
votes
1 answer

Add completion handler to setProgress UIProgressView function - Swift

UIProgressView has a function called setProgress that doesn't have a completion handler. I would like to execute code after the progress has been animated like this: self.setProgress(1, animated: true) How can I do that using Swift? EDIT: In order…
StackGU
  • 868
  • 9
  • 22
0
votes
1 answer

Swift: Longpress Button Animation

I have a Button that acts as an SOS Button. I would like to only accept longpresses on that button (something like two seconds long press) and animate the button while pressing to let the user know he has to longpress. The Button is just a round…
Jan L
  • 233
  • 1
  • 10
0
votes
0 answers

TableViewCell UI does not update for tvOS

I have a tableview which on tap plays an audio and shows a progress view with start time and end time inside tableviewcell.Once the audio starts playing the values are updated in the didStartPlaying delegate function, where the function gets called…
radb
  • 1
  • 1
0
votes
1 answer

Updating label with UIProgressView progress

I am using the ASIHTTPRequest Queue in a seperate class file from my main view to download multiple files from my web server. I have set an UIProgressView as the download progress delegate as follows: UIProgressView *myProgressView =…
Jesse
  • 3
  • 2
0
votes
0 answers

ProgressView runs indefinitely because of fetching state

I'm having a problem with asynchronous data fetch for my ProfileViewModel in order to display all the data in ProfileView. I tried many ways and it ended either in indefinite ProgressView loading or nil error. In the first place I setup sessionStore…
Vader20FF
  • 271
  • 2
  • 9
0
votes
0 answers

UIProgressView Progress Tint Color Color Bug

I have a bar style UIProgressView. Progressbar has a gray background and white progress colour and I am animating progress change with 10 second time. On simulator (iOS 14.5) everything works fine, however, on real device (iOS 15) progressBar…
Emre Önder
  • 2,408
  • 2
  • 23
  • 73
0
votes
0 answers

How to make UIProgressView with many color in circle with one bar in Swift?

I tried to find how to make cicle not line in circle border in Swift like this Can someoen can give me a some tips to make this with round at end like this.
Antonio Adrian Chavez
  • 1,016
  • 1
  • 7
  • 12
0
votes
1 answer

iphone: UIAlertView not disappearing and blocking UIProgressView

I have a UIAlertView that asks a user whether they want to copy a bunch of contacts. After the user clicks "Continue," I want the AlertView to disappear to be replaced by a UIProgressView that shows the rate of loading. Everything functions…
Jeremy
  • 883
  • 1
  • 20
  • 41