Reputation: 183
What's the UI element that is top of that number buttons to display number ? (which is in light blue color)
Upvotes: 0
Views: 99
Reputation: 8448
It looks like a UINavigationBar
with a prompt. However, the location of the gloss (which differs from your typical UINavigationBar
) and the centering of the numbers (not shown) makes me think it is a custom view.
If you're trying to replicate it, I'd suggest starting with a UIView
. Add a UIImageView
with appropriate image for the the blue background and a UILabel
for the text. Or, instead of the UIImageView
, you could draw the background in the UIView
's drawRect:
method.
Upvotes: 2