AYMADA
AYMADA

Reputation: 899

iOS border in UIProgressView

is there any way to add border around UIProgressView in iOS7? I dont find any property in storyboard. I've try do it like that also:

progressView.layer.borderWidth = 0.07;

but it gives me only border on top and bottom of progressView but not on the sides.

Upvotes: 2

Views: 1610

Answers (1)

Wain
Wain

Reputation: 119031

Consider adding your progress view as the subview of another view, where the container view has a border, or a background colour as required.

Upvotes: 3

Related Questions