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

UIProgressBar restarts while downloading through NSURLConnection

In my app, I have 2 view. first view is table view which contains list of videos and second view displays sync button to download video from url. Process: FirstView (Clicked on Any Row)---> SecondView (Navigation) SecondView ---> click on sync --->…
Dilip Lilaramani
  • 1,126
  • 13
  • 28
0
votes
0 answers

UIProgressBar within CollectionViewCell always set to 1.0 after being in background

I'm stuck while working on a custom calendar. Each day is within an Array and then put into custom CollectionViewCells. Within the cell of the current day, I want to put a kind of "marker" (I use a UIProgressBar for this) to show the progress of the…
0
votes
2 answers

Constraints for progress bar and label together in IOS Swift

I need to show a progress bar and a label adjacent to each other horizontally based on some condition and based on a different condition, I need to show label and progress bar one below the other vertically. Third condition is I hide the label and…
Rami
  • 115
  • 1
  • 2
  • 8
0
votes
1 answer

UIProgressBar: How to Change UILabel Color according to Background Color

I'm new to iOS programming. I want to create a progress bar with a UIlabel which also change text color according to background color like this: Please don't mark the question as duplicate. Because the solution I found are in Obj C or some Pods.…
Faisal Shahzad
  • 87
  • 1
  • 12
0
votes
1 answer

How to animate a UITableViewCell

I have a UITableViewCell. I'm trying to animate a progress bar when the cell comes into view. I have tried the following but it does nothing. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ …
Jon
  • 1,608
  • 7
  • 25
  • 38
0
votes
0 answers

Java Fx update progress bar

I've a simple gui created with javaFx (java version 1.8.101) with a button and progress bar. I want to update the progress immediately after pressed the button. Inside the "event press button" I also have a simple for loop that prints a message for…
PoliC
  • 1
  • 1
0
votes
3 answers

How to show progressBar during data import into CoreData?

I'm importing a large amount of Data into CoreData. I want to show a progressBar for the progress of importing. First I'm showing the progress bar. Then I'm counting the data I want to import. Then I setup a for loop: in this for loop I first set…
choise
  • 24,636
  • 19
  • 75
  • 131
0
votes
2 answers

UIProgressView setProgress animation is messed up

For some reason, UIProgressView.setProgress(1, animate: true) causes a messed up animation to occur. The picture below shows the problem. First off, it animates from the center outward and it starts slightly above its actual location. So here is…
Alex Bent
  • 127
  • 1
  • 13
0
votes
1 answer

UIProgressView only Update Values Instead of UI

I am doing a analysis process on image. As I run through all pixels, I want to have a feedback about the progress. Here is my code: for _ in 0 ..< height { for _ in 0 ..< width { analyzeImage(currentPixel) …
0
votes
1 answer

Circular progress bar in android

I want to implement some circular progressbar with a button at the middle like in whatsapp. Does anyone know of a good library to accomplish that? What I want to accomplish is this.
mungaih pk
  • 1,809
  • 8
  • 31
  • 57
0
votes
0 answers

How to assgin multiple different images to UIProgressbar in iOS?

in my application want to assign 6 different type of images on progressbar. All image shapes are different. some images are circle ,some images are square and some are oval etc. So i want to create custom progressbar . Please resolved my problem
Monika Patel
  • 2,287
  • 3
  • 20
  • 45
0
votes
3 answers

Create a UIProgressView to go from 0.0 (empty) to 1.0 (full) in 3 seconds

Basically I want to create a UIProgressView to go from 0.0 (empty) to 1.0 (full) in 3 seconds. Could anyone point me in the right direction for using NSTimer in swift with UIProgressView?
dwinnbrown
  • 3,789
  • 9
  • 35
  • 60
0
votes
2 answers

Make UIProgressView as a count down timer

I've implemented a UIProgressView as a count down timer, its value is decreased from 1.0 to 0.0 in 1.5 seconds. It already worked but the problem is the time it took was longer than 1.5 seconds, it was about 2.0 - 2.5 seconds until the progress…
JozackOverFlow
  • 267
  • 4
  • 19
0
votes
2 answers

How to create Rating Dots

I want to achieve something like this: There should be always 5 dots in total, but the black colored Dots can be variable. Is there any Github Project or something like that? I tried it with Subclasses of the UIProgressbar but that not reallys…
Davis
  • 1,253
  • 4
  • 17
  • 38
0
votes
1 answer

Control Thickness of ProgressBar

I have a progress Bar which is shown as below: My question is v simple, how would i control the "thickness" of circular view as it seems to be too thick in my opinion. Thanks very much in Advance.
Antoine Murion
  • 773
  • 1
  • 14
  • 26