Reputation: 1003
I like to do a pullableview, to show a button, but not like notification center, its a custom button like this:
And the second and final stage:
Anyone knows a library, contro to achieve that?
Upvotes: 0
Views: 545
Reputation: 40211
Why would you need a library for that? Just implement it yourself. Add a custom subview to your table view, or its superview. Add a swipe gesture recognizer to it, or implement the touch handler methods to respond to pulling by moving the view down. And finally add a button to it with a background image.
Upvotes: 1