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
4 answers

How to change height of uiprogressview

I am trying to change the UIProgressView height through nib and programatic also. But it can't changed. So give some suggestion how to handle it. Thanks in advance.
user2823044
  • 315
  • 2
  • 5
  • 14
0
votes
2 answers

progress bar showing tick animation instead of smooth animation when used with NSTimer

I am using NSTimer and circular progress bar for the countdown timer i.e 15seconds Its working with the following code but I am getting tick animation for the progress bar and not the smooth one, how to make it smooth animation -…
user1169079
  • 3,053
  • 5
  • 42
  • 71
0
votes
1 answer

UIProgressview not changing while downloading files

I am making an app where I must download some files from a webserver and save it locally. I have the following JSON: { status: 200, message: "OK", files:…
Steaphann
  • 2,797
  • 6
  • 50
  • 109
0
votes
2 answers

Update UIProgressView based on how much of an mp3 has played

I've been searching for a simple way to show the progress of playing an MP3 in a UIProgressView. I have a feeling it's going to involve an NSTimer object but I'm not sure how to implement it. Here's what I have so far. #import…
George_UK
  • 61
  • 6
0
votes
3 answers

Progress bar for downloading pdf files

This is my code to download the pdf files using NSUrlConnection and i downloading them to the document directories. -(void)startDownloadFile:(UIButton *)sender { ResourceTelephones * resource = [array objectAtIndex:sender.tag]; NSString *…
0
votes
1 answer

How do I show a loading bar in a UIWebview when a page is loading?

I've put the Progress View at the top of my webView, and I guess now I just need to link it to the loading of the page? How do I do this? I'm new to objective c.
fewaf
  • 145
  • 13
0
votes
2 answers

Simple 5 seconds progress bar view?

I'm new to coding and I'm currently making a guide/reference app (My first app). I've been using the interface builder to do most of the work. I know I need to use code soon but for now I enjoy learning with IB. Here's my question: I have a view…
17yrsDev
  • 215
  • 1
  • 2
  • 13
0
votes
2 answers

UIProgressView custom images doesn't work in iOS 7.1

I have an app using progress views with custom images. I use the code below: [cell.proStatus setTrackImage: [[UIImage imageNamed:@"CircleGrey.png"] resizableImageWithCapInsets:UIEdgeInsetsZero]]; [cell.proStatus setProgressImage: [[UIImage…
Glenn Sønderskov
  • 211
  • 1
  • 2
  • 9
0
votes
0 answers

Update UIProgressView from FBRequest CompletionHandler

I'am going crazy about this. I Know I have to update the UI from the main thread and tried both the performSelectorOnMainThread method and wrapping the progressView update in dispatch_async( dispatch_get_main_queue(), ^{ update progressView…
0
votes
1 answer

If UIProgressView.progress is moving

I'm new to Xcode. I need a If Statement that asks IF the UIProgressView progress (float) goes bigger or smaller then do something. Thanks for any help. if (myProgV is moving) { //Do something }
olivier
  • 2,585
  • 6
  • 34
  • 61
0
votes
1 answer

How does UIProgressView get information on animation duration?

I'm working on circular progress view and it's working quite cool. But I'd like to make it more flexible, so user would use it like a normal UIProgressView paired with NSTimer. I cannot figure how to make equivalent of: setProgress:(float)progress…
raistlin
  • 4,298
  • 5
  • 32
  • 46
0
votes
1 answer

uiprogressview doesn't appear below uitableview in iOS 7

I am writing a program that employs a UIProgressView that gets added programmatically and hidden/revealed during program execution. I have the following code that worked in iOS 5. The code adds the UIProgressView "below" a UITableView by adding…
0
votes
1 answer

How to show a UIProgressView for a download in my app?

I would like to show a progress bar indicating how much of a file has been downloaded in my iPhone app. I know how to set up the UIProgressView in IB and all that. But I need data such as file size in bytes to run it. How do I go about integrating…
RexOnRoids
  • 14,002
  • 33
  • 96
  • 136
0
votes
0 answers

Xamarin - WCF Upload Large Files Report progress vis UIProgressView

I have create a WCF Service that allows uploading large files via BasicHttpBinding using streaming and it is working great! I would like to extended this to show a progress bar (UIProgressView) so that when a large file is being uploaded in 65k…
manrysj
  • 75
  • 1
  • 6
0
votes
1 answer

Timer Outputs for Objective-C

This question is a branch off of my previous question from earlier today, but is still a new question. I'm having issues with a timer loop that I declared in the .m file: // battery level connection timer - (void)batteryLevelTimerRun { …
James
  • 717
  • 2
  • 6
  • 9