Navigation bar in android which is to be replicated in iOS
The picture is of a android navigation bar which i want to replicate in ios using swift 3. I have been working on this for few days now but i cant get it right any help will be great.
let height: CGFloat = 128 //whatever height you want
let bounds = self.navigationController!.navigationBar.bounds
self.navigationController?.navigationBar.frame = CGRect(x: 0, y: 0, width: bounds.width, height: bounds.height + height)
i have done this to get the height of navigation bar right but i cant seem to get the position of bar button right.