├── README.md ├── YHPopMenu.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── YHIOS002.xcuserdatad │ └── xcschemes │ ├── YHPopMenu.xcscheme │ └── xcschememanagement.plist └── YHPopMenu ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Home │ ├── Contents.json │ ├── chat_img_add.imageset │ ├── Contents.json │ ├── chat_img_add@2x.png │ └── chat_img_add@3x.png │ ├── chat_img_groupchat.imageset │ ├── Contents.json │ ├── chat_img_groupchat@2x.png │ └── chat_img_groupchat@3x.png │ ├── home_img_my.imageset │ ├── Contents.json │ ├── home_img_my@2x.png │ └── home_img_my@3x.png │ ├── home_img_offerReward.imageset │ ├── Contents.json │ ├── home_img_offerReward@2x.png │ └── home_img_offerReward@3x.png │ ├── home_img_pubDyn.imageset │ ├── Contents.json │ ├── home_img_pubDyn@2x.png │ └── home_img_pubDyn@3x.png │ ├── home_img_pubPosition.imageset │ ├── Contents.json │ ├── home_img_pubPosition@2x.png │ └── home_img_pubPosition@3x.png │ └── home_img_scan.imageset │ ├── Contents.json │ ├── home_img_scan@2x.png │ └── home_img_scan@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── Vendors └── Masonry │ ├── Info.plist │ ├── MASCompositeConstraint.h │ ├── MASCompositeConstraint.m │ ├── MASConstraint+Private.h │ ├── MASConstraint.h │ ├── MASConstraint.m │ ├── MASConstraintMaker.h │ ├── MASConstraintMaker.m │ ├── MASLayoutConstraint.h │ ├── MASLayoutConstraint.m │ ├── MASUtilities.h │ ├── MASViewAttribute.h │ ├── MASViewAttribute.m │ ├── MASViewConstraint.h │ ├── MASViewConstraint.m │ ├── Masonry.h │ ├── NSArray+MASAdditions.h │ ├── NSArray+MASAdditions.m │ ├── NSArray+MASShorthandAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.m │ ├── View+MASAdditions.h │ ├── View+MASAdditions.m │ ├── View+MASShorthandAdditions.h │ ├── ViewController+MASAdditions.h │ └── ViewController+MASAdditions.m ├── ViewController.h ├── ViewController.m ├── YHPopMenu ├── YHPopMenuView.h └── YHPopMenuView.m ├── YHPopMenuHeader.pch └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/README.md -------------------------------------------------------------------------------- /YHPopMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YHPopMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YHPopMenu.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/YHPopMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/YHPopMenu.xcscheme -------------------------------------------------------------------------------- /YHPopMenu.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu.xcodeproj/xcuserdata/YHIOS002.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YHPopMenu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/AppDelegate.h -------------------------------------------------------------------------------- /YHPopMenu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/AppDelegate.m -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/chat_img_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/chat_img_add.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/chat_img_add.imageset/chat_img_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/chat_img_add.imageset/chat_img_add@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/chat_img_add.imageset/chat_img_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/chat_img_add.imageset/chat_img_add@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/chat_img_groupchat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/chat_img_groupchat.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/chat_img_groupchat.imageset/chat_img_groupchat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/chat_img_groupchat.imageset/chat_img_groupchat@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/chat_img_groupchat.imageset/chat_img_groupchat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/chat_img_groupchat.imageset/chat_img_groupchat@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_my.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_my.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_my.imageset/home_img_my@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_my.imageset/home_img_my@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_my.imageset/home_img_my@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_my.imageset/home_img_my@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_offerReward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_offerReward.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_offerReward.imageset/home_img_offerReward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_offerReward.imageset/home_img_offerReward@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_offerReward.imageset/home_img_offerReward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_offerReward.imageset/home_img_offerReward@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_pubDyn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_pubDyn.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_pubDyn.imageset/home_img_pubDyn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_pubDyn.imageset/home_img_pubDyn@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_pubDyn.imageset/home_img_pubDyn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_pubDyn.imageset/home_img_pubDyn@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_pubPosition.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_pubPosition.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_pubPosition.imageset/home_img_pubPosition@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_pubPosition.imageset/home_img_pubPosition@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_pubPosition.imageset/home_img_pubPosition@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_pubPosition.imageset/home_img_pubPosition@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_scan.imageset/Contents.json -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_scan.imageset/home_img_scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_scan.imageset/home_img_scan@2x.png -------------------------------------------------------------------------------- /YHPopMenu/Assets.xcassets/Home/home_img_scan.imageset/home_img_scan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Assets.xcassets/Home/home_img_scan.imageset/home_img_scan@3x.png -------------------------------------------------------------------------------- /YHPopMenu/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YHPopMenu/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YHPopMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Info.plist -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/Info.plist -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/Masonry.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /YHPopMenu/Vendors/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/Vendors/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /YHPopMenu/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/ViewController.h -------------------------------------------------------------------------------- /YHPopMenu/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/ViewController.m -------------------------------------------------------------------------------- /YHPopMenu/YHPopMenu/YHPopMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/YHPopMenu/YHPopMenuView.h -------------------------------------------------------------------------------- /YHPopMenu/YHPopMenu/YHPopMenuView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/YHPopMenu/YHPopMenuView.m -------------------------------------------------------------------------------- /YHPopMenu/YHPopMenuHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/YHPopMenuHeader.pch -------------------------------------------------------------------------------- /YHPopMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHPopMenu/HEAD/YHPopMenu/main.m --------------------------------------------------------------------------------