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
69
votes
23 answers

How to increase height of UIProgressView

I am creating UIProgressView from nib. I want to increase its height but it is fixed to 9. For iPad I need to increase its height. How it can be done?
Chandan Shetty SP
  • 5,087
  • 6
  • 42
  • 63
50
votes
8 answers

UIProgressView custom track and progress images in iOS 7.1

iOS 7.1 seems to have broken the custom image properties in UIProgressView. Code that used to successfully customize progress views now yields the default appearance. I set up a sample project that does this in viewDidLoad: self.progressView.frame…
Tom Hamming
  • 10,577
  • 11
  • 71
  • 145
42
votes
13 answers

Change Height of UIProgressView in Swift

I've been trying to change the size and rotation of a progress view to adopt the size of the screen. It would basically function have a filling glass effect on the screen of the phone. I rotated it fairly harmlessly by using …
Zach Morris
  • 367
  • 1
  • 4
  • 12
38
votes
9 answers

UISlider with ProgressView combined

Is there an apple-house-made way to get a UISlider with a ProgressView. This is used by many streaming applications e.g. native quicktimeplayer or youtube. (Just to be sure: i'm only in the visualization interested) cheers Simon
endo.anaconda
  • 2,449
  • 4
  • 29
  • 55
33
votes
7 answers

Progress view height in iOS 7

I want to increase the height of progress view in iOS 6 and below i am doing this using appearence method UIImage *progressImage = [[UIImage imageNamed:@"sliderbk-progress.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 4, 0,…
Iqbal Khan
  • 4,587
  • 8
  • 44
  • 83
30
votes
1 answer

UIProgressView and Custom Track and Progress Images (iOS 5 properties)

I am experimenting with some new properties in iOS 5 regarding UIProgressView. They are: @property(nonatomic, retain) UIImage *progressImage; @property(nonatomic, retain) UIImage *trackImage; These new properties enable the customisation of the…
Sean
  • 5,233
  • 5
  • 22
  • 26
29
votes
9 answers

Timeline Progress bar for AVPlayer

AVPlayer is fully customizable, unfortunately there are convenient methods in AVPlayer for showing the time line progress bar. AVPlayer *player = [AVPlayer playerWithURL:URL]; AVPlayerLayer *playerLayer = [[AVPlayerLayer…
Sanjeev Rao
  • 2,247
  • 1
  • 19
  • 18
25
votes
5 answers

Progress bar for AVAssetExportSession

I've got an app that exports an AVMutableComposition into a .mov file, and I'd like for the user to see the status of the export with a progress bar the same way that you would if you sent a text message or uploaded a file. I know how to create a…
Orpheus Mercury
  • 1,617
  • 2
  • 15
  • 30
24
votes
2 answers

Change size (height) of ProgressView in SwiftUI

I created a ProgressView in SwiftUI (using Xcode) and edited a bit but haven’t figured out how to change its height. struct ProgressBar: View { var body: some View { VStack { ProgressView("Progres:", value: 50, total: 100) …
Michal1
  • 357
  • 1
  • 3
  • 8
24
votes
9 answers

UIWebView with Progress Bar

Hi I'm new to programming and I'm trying to make my first app for iPhones on Xcode. My app contains of a button which opens a UIWebView when pressed and loads up a homepage. Now I also want to add a Progress View to the WebView like Safari also…
user3220034
  • 271
  • 1
  • 2
  • 4
23
votes
5 answers

UIView animateWithDuration and UIProgressView setProgress

I want to animate my UIProgressView progression from 0 to 1 during 10 seconds. Code: [UIView animateWithDuration:10.0 animations:^{ [_myProgressView setProgress:1 animated:YES]; } completion:(BOOL finished)^{ if (finished) NSLog(@"animation…
gobtronic
  • 331
  • 1
  • 2
  • 12
21
votes
13 answers

Making UIProgressView Rounded corners

I have created a UIProgressView with following properties progressView.progressTintColor = UIColor.appChallengeColorWithAlpha(1.0) progressView.trackTintColor = UIColor.clearColor() progressView.clipsToBounds = true progressView.layer.cornerRadius =…
Umair Afzal
  • 4,947
  • 5
  • 25
  • 50
20
votes
5 answers

how to use the progress bar in the iphone app

In my iPhone app I am downloading some data from an FTP server. To show the action I am using UIActivityIndicator. If I put UIProgressView there instead of UIActivityIndicator, it will be more appropriate. How do I use UIProgressView while…
Ravi
  • 1,759
  • 5
  • 20
  • 38
19
votes
4 answers

Objective C: Downloading File With Progress Bar

I am trying to put a progress bar that syncs during the download that is happening. My app now can download a file using with this codes... pdfData = [[NSData alloc] initWithContentsOfURL:[NSURL…
SeongHo
  • 1,040
  • 2
  • 15
  • 39
16
votes
7 answers

Showing a UIProgressView inside or on top of a UINavigationController's UINavigationBar

I want to have an UIProgressView to show a progress on the bottom of a navigation bar (just like when sending an iMessage or text message in iOS 7). But I need this consistently on every table view view of my navigation controller. So for me it was…
1
2 3
36 37