I am trying to resize my image so it fits to navigation title. I give it height and weight but it still looks huge
and here is my code:
override func viewDidLoad() {
super.viewDidLoad()
let image = UIImage(named: "rollyiha copyi")
let imageview = UIImageView(image: image)
imageview.frame.size.width = 58
imageview.frame.size.height = 33
imageview.frame.origin = CGPoint(x: 2, y: 8)
imageview.sizeToFit()
navcik.titleView = imageview
}
And when I edit the picture to smaller size manually, it loses resolution. How to make it size 58 : 33 with code ?