It is easy to add left and right buttonbaritem on navigationbar
but I hope to add button navigationbar center
my code is
[self.navigationItem.titleView addSubview:button ];//button is not nil
but nothing happens
Yourc comment welcome
It is easy to add left and right buttonbaritem on navigationbar
but I hope to add button navigationbar center
my code is
[self.navigationItem.titleView addSubview:button ];//button is not nil
but nothing happens
Yourc comment welcome
The
titleView
isnil
by default so your code doesn't do anything.Change the code to:
This sets your button as the
titleView
.