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
0
votes
1 answer

IOS: multiple NSUrlConnection along with multiple UIProgressBar

I am writing an IOS file upload application which has multiple NSUrlConnection open at a time (each one for one file upload) and want to implement corresponding progress bar for each one of them. NSUrlConnection file upload snippet: NSURLConnection…
Jeet Kumar
  • 195
  • 3
  • 16
0
votes
1 answer

Progress bar fill with form inputs

I'm trying to get this progress bar working, but i keep getting wrong results. The problem is when i fill in the first input (whatever input), then i get 60% in stead of the percentage of the specified input. $(function ()…
Ochelh
  • 11
  • 3
0
votes
1 answer

Circular progress bar with triangle line cap - iOS

I want to create a circular progress bar that has triangle line cap (Triangle tip) and also I need to show a text in the tip of the progression. Can anyone please help me ?
0
votes
1 answer

updating UIProgressBar progress during loop

I can't find a clear answer on how to update the progress of a UIProgressbar whilst iterating a loop e.g. : for (int i=0;i
Halpo
  • 2,982
  • 3
  • 25
  • 54
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

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

UIProgressBar isn't updated in loop

This question has been asked before, but the answers aren't working. I know that (correct me if I'm wrong) the main thread updates the UI, so we need to call the main thread in the loop. I'm trying this and the progress bar only updates at the end…
uti0mnia
  • 394
  • 6
  • 19
0
votes
1 answer

How to make animation move slower on progress bar

[UIView animateWithDuration:10000 animations:^{ [self.RecomendedBar setProgress:self.whatProgressbarShouldBe animated:NO]; }]; It's pretty obvious that I set progress within an animation block whose time I set at 10k Yet it's still so fast.…
user4951
  • 32,206
  • 53
  • 172
  • 282
0
votes
1 answer

ios progress bar in uitableview

I am new to ios how to update a progress bar in uitableview. generally I have a button, when I click a button in a particular cell I need to show progress bar in that cell only please help me and thanks in advance - (UITableViewCell…
rakesh
  • 73
  • 3
  • 12
0
votes
1 answer

Trim the audiofile by selecting point in UISlider

I am working on a Audioplayer where I need to show the progress of the audio which is being played . Also I need to trim the audio by selecting the point where I marked . Thanks, Venkateshwaran
iVenky
  • 441
  • 1
  • 4
  • 14
0
votes
0 answers

How to make UIWebview url address area progressbar

I am creating a web-browser app. My Question here is how to add UIProgressbar bar in UIWebView's address area like to safari app.
Terran
  • 15
  • 5
0
votes
2 answers

How to custom rectangle progress bar?

I want to custom a rectangle progress bar with UIKIT like attracted image. Is there any source code for that? Cocos2d has the same one with CCProgressTimer but I can't find any UIKIT source code.
0
votes
4 answers

Disabled touch when UIProgressBarHUD is shown

I've created an app where I'm creating a UIProgressBarHUD to show that something is loading. My question is, how can I disable the view so nothing can be pressed untill the loading is finished? I've tried setting: [self.view…
ingh.am
  • 25,981
  • 43
  • 130
  • 177
0
votes
1 answer

UIProgressView not updating as expected

Following the answer outlined in this question, I managed to get a UIProgressView sort-of working but it seems to finish updating (i.e. the bar "fills up") before it should. I tried adding some log statements to see what was going on: float actual =…
Robert
  • 5,278
  • 43
  • 65
  • 115
-1
votes
1 answer

Add UIProgressView to a custom UITableViewCell and detect what is the index row

i create a custom UITableViewCell and i add on the Cell a UIProgressView, because when i add a row on the UITableView i download the information from a XML data, and i want use the ProgressView to show the progress of the process, my question is,…
Piero
  • 9,173
  • 18
  • 90
  • 160