0

I like to do a pullableview, to show a button, but not like notification center, its a custom button like this: First Stage

And the second and final stage:

Second Stage

Anyone knows a library, contro to achieve that?

darkman
  • 993
  • 3
  • 13
  • 31

1 Answers1

1

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.

DrummerB
  • 39,814
  • 12
  • 105
  • 142
  • I really tried, but I'm having trouble adding the button to the subview, its a UITableViewController, and i already tried [self.tableView.superview addSubview:qualquer]; or [self.tableView addSubview:qualquer]; in the first case it not shows the button, and in the second case, it show, but in the position X=0 and Y=0, and i cant move it – darkman Sep 24 '12 at 19:15
  • Try using a UIViewController and add the UITableView and the custom view both to the view controller's view. – DrummerB Sep 24 '12 at 19:31
  • Still the same error, even if i put the button in the interface builder it doesnt show it – darkman Sep 24 '12 at 20:14