From 718de0ba5c88dd4b842906555d20705866538d47 Mon Sep 17 00:00:00 2001 From: Zhigang Fang Date: Tue, 26 Feb 2013 15:37:15 +0800 Subject: [PATCH] Create README.md --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8235408 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +ZGPullDragTableView +=================== + +Awesome TableView Category for Drag and Pull. + +![img](https://raw.github.com/zhigang1992/ZGPullDragTableView/master/ScreenShots/Screen%20Shot%202013-02-26%20at%203.23.23%20PM.png) +![img](https://raw.github.com/zhigang1992/ZGPullDragTableView/master/ScreenShots/Screen%20Shot%202013-02-26%20at%203.23.44%20PM.png) + + +The cool thing about [ZGPullDragTableView][] is that, the header and the footer view is a complete functional `UIView`, +over which you have complete control. + +Is also super easy to use, the API is very thright forward. + + +After import `UITableView+ZGPullDrag.h` to you source file, `UITableView` will have two more method. + +``` +- (void)addZGPullView:(UIView *)pullView; +- (void)addZGDragView:(UIView *)dragView; +``` + +and also two more `Delegate`: + +``` +@property (nonatomic) id ZGPullViewDelegate; +@property (nonatomic) id ZGDragViewDelegate; +``` + +all of its delegate method are optional. + +[![ScreenShot](https://raw.github.com/zhigang1992/ZGPullDragTableView/master/ScreenShots/Screen%20Shot%202013-02-26%20at%203.30.47%20PM.png)](http://youtu.be/1LU7k563Cmo) + + +[ZGPullDragTableView]: https://github.com/zhigang1992/ZGPullDragTableView