diff --git a/README.md b/README.md index 958d036..2da36f6 100644 --- a/README.md +++ b/README.md @@ -143,6 +143,13 @@ Or, if you need to access the presented view controller directly, you can do so. UIViewController *visibleController = self.swipeController.visibleController; ``` +## Apps + +If you've used this project in a live app, please let me know! Nothing makes me happier than seeing someone else take my work and go wild with it. + +* [Poetreat](https://itunes.apple.com/us/app/poetreat-write-quick-simple/id636392647?ls=1&mt=8) +* [WeatherFy](https://itunes.apple.com/us/app/weatherfy/id588926390?mt=8&ign-mpt=uo%3D4) + ## Contact ## * [@nystrorm](https://twitter.com/_ryannystrom) on Twitter diff --git a/RNSwipeViewController.podspec b/RNSwipeViewController.podspec new file mode 100644 index 0000000..a1f583b --- /dev/null +++ b/RNSwipeViewController.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "RNSwipeViewController" + s.version = "0.1.0" + s.summary = "A custom table view with highly detailed ripple animations." + s.homepage = "https://github.com/rnystrom/RNRippleTableView" + s.license = 'MIT' + s.author = { "Ryan Nystrom" => "rnystrom@whoisryannystrom.com" } + s.source = { :git => "https://github.com/rnystrom/RNSwipeViewController.git", :tag => "0.1.0" } + s.source_files = 'RNSwipeViewController/RNSwipeViewController.{h,m}' + s.platform = :ios + s.ios.deployment_target = '6.0' + s.requires_arc = true +end