Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Putting imageview on navigation bar

Tags:

ios

swift

I want to add image to right side of navigation bar. But I can't drag image view to navigation bar. I can only drag a button.

enter image description here

How can I do this ? I want same thing with whatsapp profile image. You know they have circle profile picture on right side of navigation bar.

like image 466
Okan Avatar asked Dec 01 '22 00:12

Okan


1 Answers

Drag a UIView and drop it on the navigation bar first. Then drag a UIImageView into the view.

That should give you what you are looking for.

Set the image view height and width using constraints. You have to set the width and height of the containing view in the size inspector.

like image 125
Rory McKinnel Avatar answered Dec 10 '22 14:12

Rory McKinnel