ios - Adding a title to the left side of the navigation bar -


is possible add title left side of navigation bar? know how can add title in center when try add 1 left side see nothing. code have:

self.navigationitem.leftbarbuttonitem?.title = "elapsed time: 0:00" 

thank help.

try code:

let leftitem = uibarbuttonitem(title: "title",                                    style: uibarbuttonitemstyle.plain,                                    target: nil,                                    action: nil)     leftitem.isenabled = false     self.navigationitem.leftbarbuttonitem = leftitem 

more powerful solution of problem:

let longtitlelabel = uilabel()     longtitlelabel.text = "long long long long long long title"     longtitlelabel.font = ................     longtitlelabel.sizetofit()      let leftitem = uibarbuttonitem(customview: longtitlelabel)     self.navigationitem.leftbarbuttonitem = leftitem 

now can edit label want. can use font or text color.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -