├── .gitignore ├── LICENSE ├── README.md ├── WYPopoverController.podspec ├── WYPopoverController ├── WYPopoverController.h ├── WYPopoverController.m ├── WYStoryboardPopoverSegue.h └── WYStoryboardPopoverSegue.m ├── demos ├── Demo │ ├── WYPopoverDemo.xcodeproj │ │ └── project.pbxproj │ └── WYPopoverDemo │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── WYAllDirectionsViewController.h │ │ ├── WYAllDirectionsViewController.m │ │ ├── WYAnotherViewController.h │ │ ├── WYAnotherViewController.m │ │ ├── WYAppDelegate.h │ │ ├── WYAppDelegate.m │ │ ├── WYModalViewController.h │ │ ├── WYModalViewController.m │ │ ├── WYPopoverDemo-Info.plist │ │ ├── WYPopoverDemo-Prefix.pch │ │ ├── WYSettingsViewController.h │ │ ├── WYSettingsViewController.m │ │ ├── WYStoryboard.storyboard │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── images │ │ ├── button-highlighted.png │ │ ├── button-highlighted@2x.png │ │ ├── button-normal.png │ │ └── button-normal@2x.png │ │ └── main.m └── DemoSegue │ ├── WYPopoverDemoSegue.xcodeproj │ └── project.pbxproj │ └── WYPopoverDemoSegue │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MainStoryboard_iPad.storyboard │ ├── WYAppDelegate.h │ ├── WYAppDelegate.m │ ├── WYGesturesViewController.h │ ├── WYGesturesViewController.m │ ├── WYPlayer.h │ ├── WYPlayer.m │ ├── WYPlayerCell.h │ ├── WYPlayerCell.m │ ├── WYPlayerDetailsViewController.h │ ├── WYPlayerDetailsViewController.m │ ├── WYPlayersViewController.h │ ├── WYPlayersViewController.m │ ├── WYPopoverDemoSegue-Info.plist │ ├── WYPopoverDemoSegue-Prefix.pch │ ├── WYTestViewController.h │ ├── WYTestViewController.m │ ├── WYTestViewController.xib │ ├── WYViewController.h │ ├── WYViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard │ ├── images │ ├── 1Star.png │ ├── 1Star@2x.png │ ├── 1StarSmall.png │ ├── 1StarSmall@2x.png │ ├── 2Stars.png │ ├── 2Stars@2x.png │ ├── 2StarsSmall.png │ ├── 2StarsSmall@2x.png │ ├── 3Stars.png │ ├── 3Stars@2x.png │ ├── 3StarsSmall.png │ ├── 3StarsSmall@2x.png │ ├── 4Stars.png │ ├── 4Stars@2x.png │ ├── 4StarsSmall.png │ ├── 4StarsSmall@2x.png │ ├── 5Stars.png │ ├── 5Stars@2x.png │ ├── 5StarsSmall.png │ ├── 5StarsSmall@2x.png │ ├── Gestures.png │ ├── Gestures@2x.png │ ├── Players.png │ └── Players@2x.png │ ├── main.m │ └── players.plist └── screenshots ├── appearance ├── small │ ├── wypopover_arrowbase.png │ ├── wypopover_arrowheight.png │ ├── wypopover_borderwidth.png │ ├── wypopover_fillbottomcolor.png │ ├── wypopover_filltopcolor.png │ ├── wypopover_glossshadowblurradius_2.png │ ├── wypopover_glossshadowcolor.png │ ├── wypopover_glossshadowoffset_0-3.png │ ├── wypopover_innercornerradius_14.png │ ├── wypopover_innershadowblurradius_0.png │ ├── wypopover_innershadowcolor.png │ ├── wypopover_innershadowoffset_0--1.png │ ├── wypopover_innerstrokecolor.png │ ├── wypopover_outercornerradius_0.png │ ├── wypopover_outershadowblurradius_2.png │ ├── wypopover_outershadowcolor.png │ ├── wypopover_outershadowoffset_0--2.png │ ├── wypopover_outerstrokecolor.png │ ├── wypopover_strokecolor.png │ └── wypopover_viewcontentinsets_4-4-4-4.png ├── wypopover_arrowbase.png ├── wypopover_arrowheight.png ├── wypopover_borderwidth.png ├── wypopover_fillbottomcolor.png ├── wypopover_filltopcolor.png ├── wypopover_glossshadowblurradius_2.png ├── wypopover_glossshadowcolor.png ├── wypopover_glossshadowoffset_0-3.png ├── wypopover_innercornerradius_14.png ├── wypopover_innershadowblurradius_0.png ├── wypopover_innershadowcolor.png ├── wypopover_innershadowoffset_0--1.png ├── wypopover_outercornerradius_0.png ├── wypopover_outershadowblurradius_2.png ├── wypopover_outershadowcolor.png ├── wypopover_outershadowoffset_0--2.png ├── wypopover_strokecolor.png └── wypopover_viewcontentinsets_4-4-4-4.png ├── screenshot_compare_ios6-7.png ├── wypopover_default_fillbottomcolor.png ├── wypopover_default_filltopcolor.png ├── wypopover_default_glossshadowcolor.png ├── wypopover_default_shadowcolor.png ├── wypopover_default_strokecolor.png ├── wypopover_deprecated_ico.png ├── wypopover_new_ico.png ├── wypopover_popoverlayoutmargins.png ├── wypopover_screenshot_1.png ├── wypopover_screenshot_2.png ├── wypopover_wantsdefaultcontentappearance.png └── wypopovercontroller-keyboard-sample.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/README.md -------------------------------------------------------------------------------- /WYPopoverController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/WYPopoverController.podspec -------------------------------------------------------------------------------- /WYPopoverController/WYPopoverController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/WYPopoverController/WYPopoverController.h -------------------------------------------------------------------------------- /WYPopoverController/WYPopoverController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/WYPopoverController/WYPopoverController.m -------------------------------------------------------------------------------- /WYPopoverController/WYStoryboardPopoverSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/WYPopoverController/WYStoryboardPopoverSegue.h -------------------------------------------------------------------------------- /WYPopoverController/WYStoryboardPopoverSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/WYPopoverController/WYStoryboardPopoverSegue.m -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/Default.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/Default@2x.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYAllDirectionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYAllDirectionsViewController.h -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYAllDirectionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYAllDirectionsViewController.m -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYAnotherViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYAnotherViewController.h -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYAnotherViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYAnotherViewController.m -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYAppDelegate.h -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYAppDelegate.m -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYModalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYModalViewController.h -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYModalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYModalViewController.m -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYPopoverDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYPopoverDemo-Info.plist -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYPopoverDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYPopoverDemo-Prefix.pch -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYSettingsViewController.h -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYSettingsViewController.m -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/WYStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/WYStoryboard.storyboard -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/images/button-highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/images/button-highlighted.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/images/button-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/images/button-highlighted@2x.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/images/button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/images/button-normal.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/images/button-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/images/button-normal@2x.png -------------------------------------------------------------------------------- /demos/Demo/WYPopoverDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/Demo/WYPopoverDemo/main.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/Default-568h@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/Default.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/Default@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYAppDelegate.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYAppDelegate.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYGesturesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYGesturesViewController.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYGesturesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYGesturesViewController.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayer.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayer.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayerCell.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayerCell.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayerDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayerDetailsViewController.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayerDetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayerDetailsViewController.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayersViewController.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPlayersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPlayersViewController.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPopoverDemoSegue-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPopoverDemoSegue-Info.plist -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYPopoverDemoSegue-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYPopoverDemoSegue-Prefix.pch -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYTestViewController.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYTestViewController.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYTestViewController.xib -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYViewController.h -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/WYViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/WYViewController.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/1Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/1Star.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/1Star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/1Star@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/1StarSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/1StarSmall.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/1StarSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/1StarSmall@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/2Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/2Stars.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/2Stars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/2Stars@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/2StarsSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/2StarsSmall.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/2StarsSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/2StarsSmall@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/3Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/3Stars.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/3Stars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/3Stars@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/3StarsSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/3StarsSmall.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/3StarsSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/3StarsSmall@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/4Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/4Stars.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/4Stars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/4Stars@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/4StarsSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/4StarsSmall.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/4StarsSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/4StarsSmall@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/5Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/5Stars.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/5Stars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/5Stars@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/5StarsSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/5StarsSmall.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/5StarsSmall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/5StarsSmall@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/Gestures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/Gestures.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/Gestures@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/Gestures@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/Players.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/Players.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/images/Players@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/images/Players@2x.png -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/main.m -------------------------------------------------------------------------------- /demos/DemoSegue/WYPopoverDemoSegue/players.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/demos/DemoSegue/WYPopoverDemoSegue/players.plist -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_arrowbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_arrowbase.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_arrowheight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_arrowheight.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_borderwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_borderwidth.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_fillbottomcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_fillbottomcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_filltopcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_filltopcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_glossshadowblurradius_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_glossshadowblurradius_2.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_glossshadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_glossshadowcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_glossshadowoffset_0-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_glossshadowoffset_0-3.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_innercornerradius_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_innercornerradius_14.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_innershadowblurradius_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_innershadowblurradius_0.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_innershadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_innershadowcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_innershadowoffset_0--1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_innershadowoffset_0--1.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_innerstrokecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_innerstrokecolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_outercornerradius_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_outercornerradius_0.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_outershadowblurradius_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_outershadowblurradius_2.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_outershadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_outershadowcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_outershadowoffset_0--2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_outershadowoffset_0--2.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_outerstrokecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_outerstrokecolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_strokecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_strokecolor.png -------------------------------------------------------------------------------- /screenshots/appearance/small/wypopover_viewcontentinsets_4-4-4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/small/wypopover_viewcontentinsets_4-4-4-4.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_arrowbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_arrowbase.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_arrowheight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_arrowheight.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_borderwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_borderwidth.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_fillbottomcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_fillbottomcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_filltopcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_filltopcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_glossshadowblurradius_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_glossshadowblurradius_2.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_glossshadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_glossshadowcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_glossshadowoffset_0-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_glossshadowoffset_0-3.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_innercornerradius_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_innercornerradius_14.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_innershadowblurradius_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_innershadowblurradius_0.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_innershadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_innershadowcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_innershadowoffset_0--1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_innershadowoffset_0--1.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_outercornerradius_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_outercornerradius_0.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_outershadowblurradius_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_outershadowblurradius_2.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_outershadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_outershadowcolor.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_outershadowoffset_0--2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_outershadowoffset_0--2.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_strokecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_strokecolor.png -------------------------------------------------------------------------------- /screenshots/appearance/wypopover_viewcontentinsets_4-4-4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/appearance/wypopover_viewcontentinsets_4-4-4-4.png -------------------------------------------------------------------------------- /screenshots/screenshot_compare_ios6-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/screenshot_compare_ios6-7.png -------------------------------------------------------------------------------- /screenshots/wypopover_default_fillbottomcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_default_fillbottomcolor.png -------------------------------------------------------------------------------- /screenshots/wypopover_default_filltopcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_default_filltopcolor.png -------------------------------------------------------------------------------- /screenshots/wypopover_default_glossshadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_default_glossshadowcolor.png -------------------------------------------------------------------------------- /screenshots/wypopover_default_shadowcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_default_shadowcolor.png -------------------------------------------------------------------------------- /screenshots/wypopover_default_strokecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_default_strokecolor.png -------------------------------------------------------------------------------- /screenshots/wypopover_deprecated_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_deprecated_ico.png -------------------------------------------------------------------------------- /screenshots/wypopover_new_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_new_ico.png -------------------------------------------------------------------------------- /screenshots/wypopover_popoverlayoutmargins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_popoverlayoutmargins.png -------------------------------------------------------------------------------- /screenshots/wypopover_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_screenshot_1.png -------------------------------------------------------------------------------- /screenshots/wypopover_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_screenshot_2.png -------------------------------------------------------------------------------- /screenshots/wypopover_wantsdefaultcontentappearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopover_wantsdefaultcontentappearance.png -------------------------------------------------------------------------------- /screenshots/wypopovercontroller-keyboard-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolaschengdev/WYPopoverController/HEAD/screenshots/wypopovercontroller-keyboard-sample.jpg --------------------------------------------------------------------------------