├── .gitignore ├── LICENSE ├── PininterestLikeMenu ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── Main_iPad.storyboard │ └── Main_iPhone.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── PininterestLikeMenu │ ├── PinterestLikeMenu.h │ ├── PinterestLikeMenu.m │ ├── PinterestLikeMenuItem.h │ └── PinterestLikeMenuItem.m ├── PinterestLikeMenu-Info.plist ├── PinterestLikeMenu-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ └── InfoPlist.strings ├── images │ ├── center-highlighted.png │ ├── center-highlighted@2x.png │ ├── center.png │ └── center@2x.png └── main.m ├── PinterestLikeMenu.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /PininterestLikeMenu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/AppDelegate.h -------------------------------------------------------------------------------- /PininterestLikeMenu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/AppDelegate.m -------------------------------------------------------------------------------- /PininterestLikeMenu/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /PininterestLikeMenu/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /PininterestLikeMenu/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PininterestLikeMenu/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenu.h -------------------------------------------------------------------------------- /PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenu.m -------------------------------------------------------------------------------- /PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenuItem.h -------------------------------------------------------------------------------- /PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/PininterestLikeMenu/PinterestLikeMenuItem.m -------------------------------------------------------------------------------- /PininterestLikeMenu/PinterestLikeMenu-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/PinterestLikeMenu-Info.plist -------------------------------------------------------------------------------- /PininterestLikeMenu/PinterestLikeMenu-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/PinterestLikeMenu-Prefix.pch -------------------------------------------------------------------------------- /PininterestLikeMenu/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/ViewController.h -------------------------------------------------------------------------------- /PininterestLikeMenu/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/ViewController.m -------------------------------------------------------------------------------- /PininterestLikeMenu/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PininterestLikeMenu/images/center-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/images/center-highlighted.png -------------------------------------------------------------------------------- /PininterestLikeMenu/images/center-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/images/center-highlighted@2x.png -------------------------------------------------------------------------------- /PininterestLikeMenu/images/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/images/center.png -------------------------------------------------------------------------------- /PininterestLikeMenu/images/center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/images/center@2x.png -------------------------------------------------------------------------------- /PininterestLikeMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PininterestLikeMenu/main.m -------------------------------------------------------------------------------- /PinterestLikeMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PinterestLikeMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PinterestLikeMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/PinterestLikeMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itouch2/PinterestLikeMenu/HEAD/README.md --------------------------------------------------------------------------------