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

getting a reference to UIVIEW CONTROLLER

I need to update a progress bar from view controller lets call him A which is located in view controller B , the update is done when I start a NSULRCONNECTION from B that will access the method DidSendBodyData defined in view controller A in this…
user2960510
  • 1,123
  • 2
  • 8
  • 9
1
vote
1 answer

Getting a current value from UIProgressView, and triggering an event when a threshold is met

I have several UIProgressViews that read the voltage of an external device attached to the iOS device. The view scales it from 0-5 volts and I wanted to know if there was a way to retrieve the current progress/voltage of the UIProgressView and…
Timothy Frisch
  • 2,995
  • 2
  • 30
  • 64
1
vote
1 answer

UIProgressView with custom progress image - iOS

I would like to make a progress bar with progress image, but it doesn't work for me in any way. I've tried subclassing, storyboard's attributes inspector and other ways... I would like to have progress image with gradient from left to right as this…
saltwat5r
  • 1,107
  • 13
  • 21
1
vote
2 answers

iOS7 UIProgressBar fill without delay

I use UIProgressView in iOS7 and here is the problem: let's say for demonstration I have just UIProgressView and UIButton on the UIView. When button clicked next function fires: - (IBAction)buttonClick { if (self.progress.progress == 0) { …
user2260054
  • 522
  • 1
  • 3
  • 11
1
vote
1 answer

ios7 UIProgressView missing when ipad change from Landscape to Portrait

I use UIProgressView to do the music Playback progress bar ,It use well in ios6 or before,but there is a problem in ios7. It is missing!when I rotate the ipad from Landscape to Portrait. the code below [_playerBar…
qqwormlxd
  • 35
  • 5
1
vote
2 answers

how to display UIProgressView on didSelectItemAtIndexPath delegate of UICollectionView in Objective-C ?

I want to display progress view in collection view when user click on the cell and also want to display progress of that cell's progress view. //...in .h file i have declared UIProgressView - @property(nonatomic,retain)IBOutlet UIProgressView…
Rohan
  • 2,939
  • 5
  • 36
  • 65
1
vote
1 answer

incrementing uiprogressview while avaudiorecorder is recording

How would I go about increasing the progress counter for a UIProgressView while my AVAudioRecorder is recording? I'm not really sure where to increment the progressview... Code to begin and end recording: - (IBAction)beginRecording:(id)sender { …
Apollo
  • 8,874
  • 32
  • 104
  • 192
1
vote
2 answers

nsarray has the many urls, load on progressview

imagesArray = [[NSArray…
razesh
  • 487
  • 4
  • 15
1
vote
3 answers

How to show loading progress bar for image in IOS SDK

I am creating one book reader Application. In my application I am loading the pages as images from Web URL.When loading each images I like to show the loading percentage like below Please suggest me some ideas
btmanikandan
  • 1,923
  • 2
  • 25
  • 45
1
vote
1 answer

Display PercentDone UIProgressView in UiLabel

I have a button connected to a UiProgressView, has only the function to count the clicks on the button ... I need to show the percentage of completion in a UILabel .. Can you tell me which method is better? To make you understand the function I show…
kAiN
  • 2,559
  • 1
  • 26
  • 54
1
vote
2 answers

progressview is not getting displayed in ios7

I am displaying a progressview and a label by adding it as a subviews to an alertview, and that was working fine with IOS6, i tested same thing on IOS7, and progressview and label are not getting displayed. below is my code. what changes need to be…
RockandRoll
  • 409
  • 5
  • 23
1
vote
1 answer

Draw an image on-top of Progress View

I'm trying to create a custom UIProgressView and I want it to look like this: But everything that I'm trying is not working (iOS7). I want it to support iOS5+ and also in iOS7. Finally I did something and I almost there, but I have few…
ytpm
  • 4,962
  • 6
  • 56
  • 113
1
vote
3 answers

Default UIProgressView rendering on iOS7 using iOS6 SDK

I am experience a rendering bug when using the default progress view. Rather than being 9px tall, the view is clipped to about 4px when using the default progress view. My app is built with the iOS6 SDK, and the issue appear when running on a iOS7…
jcampbell1
  • 4,159
  • 3
  • 33
  • 35
1
vote
1 answer

UIProgressView with custom ProgressImage stretched incorrectly. How to fix?

I' m trying to customize UIProgressView with custom progress image. But it is stretched incorrectly. So i have a custom progress image : its dimensions are 75x18 pixels. And I have a track which length is 270 points. But when I set my progress…
MainstreamDeveloper00
  • 8,436
  • 15
  • 56
  • 102
1
vote
1 answer

How do i record videos in sections and also allow the user to delete sections(Same as instagram app)

I want to know if there is any control that lets me record videos and stitch them together in the similar way as the instagram app. The video recording is being done in sections.The cross button allows the user to delete the previous section…
user2727923
  • 81
  • 1
  • 4