kchromik
kchromik

Reputation: 1388

Toolbar should be over the view

I'm facing an issue. I implemented an AVPlayer and it works. But if the video is in 4:3 format, the UIToolBar which i've implemented in the view, the video view is over my toolbar, so i cannot use the buttons. How i can set that the UIToolBar is always over this view. The toolbar style should be UIBarStyleBlackTranslucent.

Upvotes: 2

Views: 107

Answers (1)

iPatel
iPatel

Reputation: 47099

Write Simple:

[self.view bringSubviewToFront:yourToolBar];

Upvotes: 2

Related Questions