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

UiProgressView Custom with PaintCode

I'm doing several tests with drawing a PaintCode progressView implementing it within a custom UIView controller ... The procedure is as you well know place a UIView object and change its class progressview in order to invoke the customization within…
kAiN
  • 2,559
  • 1
  • 26
  • 54
0
votes
0 answers

UiProgressView Increment Value Action

I would have to use a necessiva progressView for the management of a small form. In a nutshell I have several actions that the user must carry through a click of UIButton and these actions should increase the progressview until completion . Let me…
kAiN
  • 2,559
  • 1
  • 26
  • 54
0
votes
1 answer

To update UIProgressView for Multiple File Download (how to use delegate)?

I am trying to update the multiple file download progress value to UIProgressView on a table cell. I have the FileDownloader class which has NSOperationQueue that does asynchronous download operations. I am thinking to update the UI using a…
0
votes
0 answers

iOS 3+ programming a uiprogressview w/o a nib (I have theos)

I have implemented FlowCover programmatically. On the click of an image in the cover flow, I would like a uiprogressview bar to appear below the image in the cover flow. Here is my current code snippet for the area of concern: - (void)…
Dave1482
  • 3
  • 3
0
votes
2 answers

UIProgressView does not show up

I have an app that downloads a picture from a server. I would like to show the progress to the user. I have read about UIProgressView on the apple docs and read many answers on this site but I can't get it to work. Here is my code In my viewDidLoad…
nupac
  • 2,459
  • 7
  • 31
  • 56
0
votes
3 answers

Mapping A number not divisible by 10 to UIProgressview

I am working on an iPhone app utilizing two UIProgressviews. The problem is that it is quite simple to show the progress of something 5/100 or 5/10 but in order to show something 5/16 I would need to change the maximum value of the progress view. I…
ZB-dev
  • 219
  • 3
  • 12
0
votes
2 answers

Unable to remove UIProgressView from Super View after "cross" button clicked?

I am stuck in hidden problem. I want to remove all UIProgressView from Superview. I am creating cross button in this way, crossButton = [[CCMenuItemImage alloc] initWithNormalSprite:[CCSprite spriteWithSpriteFrame:[[CCSpriteFrameCache…
Hammy
  • 35
  • 1
  • 5
0
votes
2 answers

Multiple download content in UITableView (with ProgressView bar)

TableView that displays a number of downloadable content. When I click it on a button within the cell the download starts. I can download one file at a time (file that I received is good). But, if I download more than one at a time, the files that I…
Sunny
  • 25
  • 1
  • 5
0
votes
1 answer

UIProgressView does not update

If it matters: - I am using storyboards - Core data - xcode 4.6 My app has a UITableViewController for a specific view. On that view, if the user clicks a button the software goes through a few processes where data is downloaded from an Internet…
alockrem
  • 767
  • 3
  • 9
  • 23
0
votes
1 answer

UIProgressview Delegate updating not showing the progress bar value updation

I have a UIProgressView object in reflection view of iCarousel class When i m trying to update the ProgressView its not updating For updating of progress view i m using delegate method When the download completes for an image i m calling the…
deve1
  • 195
  • 1
  • 3
  • 14
0
votes
1 answer

How to create a custom progress bar with attached button on it with scrolling functionality in android

I have to implement a progress bar as given in image. It should work on change the position of button over it. Here i need to change the brightness of image by this progress bar. If user move that button to left then image brightness should go to…
Tapesh
  • 372
  • 1
  • 6
  • 17
0
votes
1 answer

UIProgressView doesn't change height after changing appearance, but change after rotating device

I've set track image and progress image using [UIProgressView appearance]. Images set, but height of UIProgressView didn't change. It changes only after rotating device to lanscape. Where could be problem? Setting UIProgressView's frame doesn't…
Timur Mustafaev
  • 4,869
  • 9
  • 63
  • 109
0
votes
1 answer

How do I correctly shrink a UIProgressView using CGAffine?

I'd like to essentially decrease the height of a UIProgressView to create a "thinner" progress bar. I'm not sure if I'm just using CGAffine incorrectly or I need to use a different approach altogether. Here's my code, prog1, prog2, and prog3 are all…
user1080952
  • 1,073
  • 2
  • 10
  • 15
0
votes
2 answers

Update UIProgressView in UICollectionViewCell

I'm trying to build an app that will display a collection of magazines that can be downloaded and then read. What I want to happen is if the magazine isn't downloaded, a download will commence when a cell is tapped and a progressview will appear in…
mike
  • 1,441
  • 2
  • 19
  • 31
0
votes
2 answers

how to I understand how much downloaded of file with NSURLConnection

I have one application that downloaded file from url with NSURLConnection. I want when to click download on button progressView starts. in top of progressView is UILable that show me status download. I want show ("0000 MB downloaded /1000 MB") in…
fred
  • 157
  • 2
  • 11