2

I've been wanting to create a HUD style loading bar like the SMS app on the iPhone used to have but I don't know how to. I was wondering if anyone has done this before or if there is a tutorial somewhere for it? I just think it looks so nice and would like to use it rather than the built in loading progress bar.

Chris
  • 44,602
  • 16
  • 137
  • 156
Alexander
  • 409
  • 1
  • 4
  • 14

1 Answers1

1

It should be very simple to implement using Core Animation layers (the CALayer class).

The bar would be a layer with rounded corners and the fill could be drawn by a custom drawing method.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Martin Cote
  • 28,864
  • 15
  • 75
  • 99