I'm trying to implement an app and add symbols of weekdays exactly as it is done in iOS Calendar.
The first issue I've met is size. When I change the height of the navigation bar within viewDidLoad
method it returns to its original size after appearing so I have to do the same operation in view's appearing.
The way I'm going.
self.navigationController!.navigationBar.frame.size.height += 30
Then it's about other items. Once a new view controller is pushed to the navigation hierarchy Bar Buttons are created automatically. So is there an actual way to simply change their positions? Or do I have to create my own ones and add them to the navigation bar?
Thank you in advance!