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
17
votes
5 answers

How to set the progress tint color in UIProgressView

I would like to know how to set UIProgressView tint color. Sometimes, depending on the color, the default height does not allow to see properly the progress. How to fix that issue?
11
votes
2 answers

Add UIProgressBar to UITableViewCell

I have a requirement to display a UIProgressBar in UITableviewCell while streaming an audio clip. I tried running a NSTimer and then trying to update the progress view, but its not working. This is my code. Please let me know whats wrong with this…
smartsanja
  • 4,413
  • 9
  • 58
  • 106
8
votes
3 answers

How to make UIProgressBar programmatically in swift

I want to make UIProgressBar programmatically in swift? what is wrong in this code? override func viewDidLoad() { super.viewDidLoad() let progressView = UIProgressView(progressViewStyle: .Bar) progressView.center =…
sulabh qg
  • 1,155
  • 2
  • 12
  • 20
7
votes
2 answers

AVPlayer seekToTime: backward not working

I have the following code: AVPlayerItem *currentItem = [AVPlayerItem playerItemWithURL:soundURL]; [self.audioPlayer replaceCurrentItemWithPlayerItem:currentItem]; [self.audioPlayer play]; where soundURL is a remoteURL. It works fine. The AVPlayer…
Anand Y
  • 329
  • 2
  • 13
4
votes
0 answers

Callback for when UIProgressView finished animating

Is there any way to detect when a UIProgressView has finished updating via the setProgress: animated: method?
Gerard
  • 4,818
  • 5
  • 51
  • 80
4
votes
2 answers

How update progressBar in UICollectionViewCell subclass when download file

I'm going crazy, i'm trying to update the progressBar of a UICollectionViewCelll when i download a file, i have tried everything, everything everything, this is my last attempt, i have create a subclass of UICollectionViewCell, connected with a xib…
Piero
  • 9,173
  • 18
  • 90
  • 160
2
votes
5 answers

UIProgressbar update method

Hello i'm trying to write a method that update a UIProgressbar ! The problem is that when both of values arrive fine to the method (NSLog display values) the division operation generate a bad_access when i run the application !! I tried many…
Bechir
  • 202
  • 2
  • 7
2
votes
2 answers

Observe or Track progress bar on every function swift

I have implemented tableView with custom cell for appointments with progress bar for tracking. How can I observe or track progress bar on swift functions? Actually I am not getting exact idea how I save progress data and how to show it? I have…
Newbie
  • 360
  • 3
  • 19
2
votes
0 answers

AppStore like progress view with stop button

I like user interface of Apple's AppStore App downloading. I want to integrate the same in my App but haven't found anything helpful. Has any one has implemented such interface? Is there any third party class available ? I will be glad if I…
NSPratik
  • 4,714
  • 7
  • 51
  • 81
2
votes
2 answers

Swift - UIProgressView fills diagonally

So I set up a UIProgressView to fill after 3 seconds as well as increasing the height of the bar a bit. However when it fills up, it fills diagonally as opposed to just filling from one side to the other. The bar starts in the top right corner and…
dwinnbrown
  • 3,789
  • 9
  • 35
  • 60
2
votes
1 answer

Progress bar while synchronous save to parse.com

Anyone know how I can show a UIProgressView while I save synchronous to parse.com? I try to show a progress view before I start the sync save and hide it after the save is done, but this doesn't work. It doesn't show the progress view and just start…
TommyF
  • 381
  • 1
  • 7
  • 22
2
votes
1 answer

How much should the AppDelegate do?

I'm designing quite a large App and on startup it will create sessions with a few different servers. As they are creating a session which is used across all parts of the app its something I thought would be best in App Delegate. But the problem is I…
Rudiger
  • 6,749
  • 13
  • 51
  • 102
2
votes
4 answers

Multicolored Progressbar in iOS

I need to set this kind of Progressbar in iOS application . Can any one suggest how can I get this kind of look when my progress is completed (2nd image).
iCoder
  • 1,298
  • 1
  • 9
  • 25
1
vote
0 answers

jquery progress bar setinterver

I want to repeat the animation periodically every 30 seconds, but I don't know how. I tried setinterver but it didn't work
dddsadwe
  • 11
  • 1
1
vote
3 answers

Using a UIProgressBar to display status of a download

Does anyone have a link to a good tutorial about using a UIProgessBar in iOS to display the status of a download? I wouldn't have a problem even taking the total download size and inserting an if statement that states if (downloaded "x" megabytes),…
Jack
  • 13
  • 3
1
2 3 4 5