Open valzevul opened 8 years ago
Hi, thanks for using it!
The only way right now is to probably set disable
to YES
, then back to NO
, but that's not ideal. I thought there was an issue already open for that.. Since there isn't, I'll leave this and hopefully get to it soon, it's definitely something good to have.
It would also be great make this animatable. Also thank you for this framework! It's awesome!
Setting disable to true
then false
didn't do it.
What I did is expose a new method in TLYShyNavBarManager
. Here is how I did it :
In TLYShyNavBarManager.h
, add the following line :
- (void)expand;
In TLYShyNavBarManager.m
, add the following lines below the - (void)cleanup
method :
- (void)expand
{
[self cleanup];
}
And then to show the shyNavBar, simply call self.shyNavBar.expand()
.
Hello, Thank you very much for your control. I was wondering, is it possible to show the navigation bar programmatically (when a user presses a button, not during the scroll)?
Sorry if I've missed the info in the documentation.