├── .gitignore ├── OpenEyesDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── huyi.xcuserdatad │ └── xcschemes │ ├── OpenEyesDemo.xcscheme │ └── xcschememanagement.plist ├── OpenEyesDemo.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── huyi.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── OpenEyesDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── R4.7.imageset │ │ ├── R4.7.png │ │ └── Contents.json │ ├── 1.imageset │ │ ├── 1.jpg │ │ └── Contents.json │ ├── 2.imageset │ │ ├── 2.jpg │ │ └── Contents.json │ ├── 3.imageset │ │ ├── 3.jpg │ │ └── Contents.json │ ├── 4.imageset │ │ ├── 4.jpg │ │ └── Contents.json │ ├── 5.imageset │ │ ├── 5.jpg │ │ └── Contents.json │ ├── Action_Airplay-blue.imageset │ │ ├── Action_Airplay-blue@2x.png │ │ └── Contents.json │ ├── Action_Airplay.imageset │ │ ├── Action_Airplay@2x.png │ │ └── Contents.json │ ├── Action_Edit.imageset │ │ ├── Action_Edit@2x.png │ │ └── Contents.json │ ├── Action_Focus.imageset │ │ ├── Action_Focus@2x.png │ │ └── Contents.json │ ├── Action_Focus_white.imageset │ │ ├── Action_Focus_white@2x.png │ │ └── Contents.json │ ├── Action_HD.imageset │ │ ├── Action_HD@2x.png │ │ └── Contents.json │ ├── Action_LD.imageset │ │ ├── Action_LD@2x.png │ │ └── Contents.json │ ├── Action_Like.imageset │ │ ├── Action_Like@2x.png │ │ └── Contents.json │ ├── Action_Like_grey.imageset │ │ ├── Action_Like_grey@2x.png │ │ └── Contents.json │ ├── Action_Liked.imageset │ │ ├── Action_Liked@2x.png │ │ └── Contents.json │ ├── Action_Menu.imageset │ │ ├── Action_Menu@2x.png │ │ └── Contents.json │ ├── Action_PIP.imageset │ │ ├── Action_PIP.png │ │ ├── Action_PIP@2x.png │ │ └── Contents.json │ ├── Action_SD.imageset │ │ ├── Action_SD@2x.png │ │ └── Contents.json │ ├── Action_Screenshots.imageset │ │ ├── Action_Screenshots.png │ │ ├── Action_Screenshots@2x.png │ │ └── Contents.json │ ├── Action_Setting.imageset │ │ ├── Action_Setting@2x.png │ │ └── Contents.json │ ├── Action_Share.imageset │ │ ├── Action_Share@2x.png │ │ └── Contents.json │ ├── Action_TopCharts.imageset │ │ ├── Action_TopCharts@2x.png │ │ └── Contents.json │ ├── Action_Volume+.imageset │ │ ├── Action_Volume+@2x.png │ │ └── Contents.json │ ├── Action_Volume-.imageset │ │ ├── Action_Volume-@2x.png │ │ └── Contents.json │ ├── Action_backward.imageset │ │ ├── Action_backward@2x.png │ │ └── Contents.json │ ├── Action_backward_white.imageset │ │ ├── Action_backward_white@2x.png │ │ └── Contents.json │ ├── Action_cancel.imageset │ │ ├── Action_cancel@2x.png │ │ └── Contents.json │ ├── Action_cancel_small_grey.imageset │ │ ├── Action_cancel_small_grey@2x.png │ │ └── Contents.json │ ├── Action_close.imageset │ │ ├── Action_close@2x.png │ │ └── Contents.json │ ├── Action_close_white.imageset │ │ ├── Action_close_white@2x.png │ │ └── Contents.json │ ├── Action_confirm_white.imageset │ │ ├── Action_confirm_white@2x.png │ │ └── Contents.json │ ├── Action_down.imageset │ │ ├── Action_down@2x.png │ │ └── Contents.json │ ├── Action_download.imageset │ │ ├── Action_download@2x.png │ │ └── Contents.json │ ├── Action_more_small_grey.imageset │ │ ├── Action_more_small_grey@2x.png │ │ └── Contents.json │ ├── Action_next.imageset │ │ ├── Action_next@2x.png │ │ └── Contents.json │ ├── Action_pause.imageset │ │ ├── Action_pause@2x.png │ │ └── Contents.json │ ├── Action_play.imageset │ │ ├── Action_play@2x.png │ │ └── Contents.json │ ├── Action_play_click.imageset │ │ ├── Action_play_click@2x.png │ │ └── Contents.json │ ├── Action_reload.imageset │ │ ├── Action_reload@2x.png │ │ └── Contents.json │ ├── Action_reload_player.imageset │ │ ├── Action_reload_player@2x.png │ │ └── Contents.json │ ├── Action_retry.imageset │ │ ├── Action_retry@2x.png │ │ └── Contents.json │ ├── Action_review.imageset │ │ ├── Action_review@2x.png │ │ └── Contents.json │ ├── Action_review_grey.imageset │ │ ├── Action_review_grey@2x.png │ │ └── Contents.json │ ├── Action_start.imageset │ │ ├── Action_start@2x.png │ │ └── Contents.json │ ├── Action_unFocus.imageset │ │ ├── Action_unFocus@2x.png │ │ └── Contents.json │ ├── Action_up.imageset │ │ ├── Action_up@2x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon120x120@2x~ipad.png │ │ ├── AppIcon180x180@2x~ipad-1.png │ │ ├── AppIcon180x180@2x~ipad-2.png │ │ ├── AppIcon180x180@2x~ipad.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon83.5x83.5@2x~ipad 2.png │ │ └── Contents.json │ ├── Contents.json │ ├── Default_share_image.imageset │ │ ├── Contents.json │ │ └── Default_share_image.png │ ├── Detail_CoverBlack.imageset │ │ ├── Contents.json │ │ └── Detail_CoverBlack.png │ ├── Home_header.imageset │ │ ├── Contents.json │ │ └── Home_header.png │ ├── ICON_EYE_black.imageset │ │ ├── Contents.json │ │ └── ICON_EYE_black@2x.png │ ├── ICON_EYE_white.imageset │ │ ├── Contents.json │ │ └── ICON_EYE_white@2x.png │ ├── ICON_Loading_In.imageset │ │ ├── Contents.json │ │ └── ICON_Loading_In@2x.png │ ├── ICON_Loading_Out.imageset │ │ ├── Contents.json │ │ └── ICON_Loading_Out@2x.png │ ├── ICON_Loading_Out_big.imageset │ │ ├── Contents.json │ │ └── ICON_Loading_Out_big@2x.png │ ├── ICON_Loading_in_big.imageset │ │ ├── Contents.json │ │ └── ICON_Loading_in_big@2x.png │ ├── ICON_Menu_More.imageset │ │ ├── Contents.json │ │ └── ICON_Menu_More@2x.png │ ├── ICON_More.imageset │ │ ├── Contents.json │ │ └── ICON_More@2x.png │ ├── ICON_SNS_Link.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_Link@2x.png │ ├── ICON_SNS_Moment.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_Moment@2x.png │ ├── ICON_SNS_QQ.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_QQ@2x.png │ ├── ICON_SNS_Wechat.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_Wechat@2x.png │ ├── ICON_SNS_Weibo.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_Weibo@2x.png │ ├── ICON_SNS_Weico.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_Weico@2x.png │ ├── ICON_SNS_facebook.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_facebook@2x.png │ ├── ICON_SNS_twitter.imageset │ │ ├── Contents.json │ │ └── ICON_SNS_twitter@2x.png │ ├── ICON_error.imageset │ │ ├── Contents.json │ │ └── ICON_error@2x.png │ ├── ICON_error_white.imageset │ │ ├── Contents.json │ │ └── ICON_error_white@2x.png │ ├── ICON_review_white.imageset │ │ ├── Contents.json │ │ └── ICON_review_white@2x.png │ ├── ICON_time.imageset │ │ ├── Contents.json │ │ └── ICON_time@2x.png │ ├── ICON_up.imageset │ │ ├── Contents.json │ │ └── ICON_up@2x.png │ ├── LaunchImage.launchimage │ │ ├── R4.7.png │ │ ├── 2X.png │ │ ├── Contents.json │ │ ├── LaunchImage-700-Portrait@2x~ipad.png │ │ ├── LaunchImage-700-Portrait~ipad.png │ │ ├── R4.png │ │ └── R5.5.png │ ├── Login.imageset │ │ ├── Contents.json │ │ └── Login.png │ ├── Logo.imageset │ │ ├── Contents.json │ │ ├── Logo.png │ │ └── Logo@2x.png │ ├── Splash_BKG.imageset │ │ ├── Contents.json │ │ └── Splash_BKG.png │ ├── action_ic_like.imageset │ │ ├── Contents.json │ │ ├── action_ic_like.png │ │ └── action_ic_like@2x.png │ ├── action_ic_liked.imageset │ │ ├── Contents.json │ │ ├── action_ic_liked.png │ │ └── action_ic_liked@2x.png │ ├── action_menu_down.imageset │ │ ├── Contents.json │ │ └── action_menu_down@2x.png │ ├── action_motion_off.imageset │ │ ├── Contents.json │ │ ├── action_motion_off.png │ │ └── action_motion_off@2x.png │ ├── action_motion_on.imageset │ │ ├── Contents.json │ │ ├── action_motion_on.png │ │ └── action_motion_on@2x.png │ ├── action_next_video.imageset │ │ ├── Contents.json │ │ ├── action_next_video.png │ │ └── action_next_video@2x.png │ ├── action_player_pause.imageset │ │ ├── Contents.json │ │ ├── action_player_pause.png │ │ └── action_player_pause@2x.png │ ├── action_player_play.imageset │ │ ├── Contents.json │ │ ├── action_player_play.png │ │ └── action_player_play@2x.png │ ├── action_share_link_grey.imageset │ │ ├── Contents.json │ │ ├── action_share_link_grey.png │ │ └── action_share_link_grey@2x.png │ ├── action_share_moment_grey.imageset │ │ ├── Contents.json │ │ ├── action_share_moment_grey.png │ │ └── action_share_moment_grey@2x.png │ ├── action_share_qq_grey.imageset │ │ ├── Contents.json │ │ ├── action_share_qq_grey.png │ │ └── action_share_qq_grey@2x.png │ ├── action_share_qzone.imageset │ │ ├── Contents.json │ │ └── action_share_qzone@2x.png │ ├── action_share_qzone_grey.imageset │ │ ├── Contents.json │ │ └── action_share_qzone_grey@2x.png │ ├── action_share_weibo_grey.imageset │ │ ├── Contents.json │ │ ├── action_share_weibo_grey.png │ │ └── action_share_weibo_grey@2x.png │ ├── action_share_weico_grey.imageset │ │ ├── Contents.json │ │ └── action_share_weico_grey@2x.png │ ├── action_share_weixin_grey.imageset │ │ ├── Contents.json │ │ ├── action_share_weixin_grey.png │ │ └── action_share_weixin_grey@2x.png │ ├── action_zan_grey.imageset │ │ ├── Contents.json │ │ ├── action_zan_grey.png │ │ └── action_zan_grey@2x.png │ ├── action_zan_white.imageset │ │ ├── Contents.json │ │ ├── action_zan_white.png │ │ └── action_zan_white@2x.png │ ├── action_zaned_grey.imageset │ │ ├── Contents.json │ │ ├── action_zaned_grey.png │ │ └── action_zaned_grey@2x.png │ ├── action_zaned_white.imageset │ │ ├── Contents.json │ │ ├── action_zaned_white.png │ │ └── action_zaned_white@2x.png │ ├── addd.imageset │ │ ├── Contents.json │ │ └── addd.png │ ├── background_explore_card_end.imageset │ │ ├── Contents.json │ │ └── background_explore_card_end.png │ ├── background_explore_card_share.imageset │ │ ├── Contents.json │ │ └── background_explore_card_share.png │ ├── background_explore_default_blur.imageset │ │ ├── Contents.json │ │ └── background_explore_default_blur.png │ ├── background_irate.imageset │ │ ├── Contents.json │ │ └── background_irate@2x.png │ ├── background_pastdaily_badge.imageset │ │ ├── Contents.json │ │ └── background_pastdaily_badge@2x.png │ ├── background_pastdaily_badge_gray.imageset │ │ ├── Contents.json │ │ └── background_pastdaily_badge_gray@2x.png │ ├── badge_selected_header.imageset │ │ ├── Contents.json │ │ └── badge_selected_header@2x.png │ ├── bar_ic_search.imageset │ │ ├── Contents.json │ │ ├── bar_ic_search.png │ │ └── bar_ic_search@2x.png │ ├── bar_ic_search_white.imageset │ │ ├── Contents.json │ │ └── bar_ic_search_white@2x.png │ ├── greyheart.imageset │ │ ├── Contents.json │ │ └── greyheart@2x.png │ ├── guide_arrow_down.imageset │ │ ├── Contents.json │ │ └── guide_arrow_down@2x.png │ ├── guide_arrow_left.imageset │ │ ├── Contents.json │ │ └── guide_arrow_left@2x.png │ ├── guide_arrow_right.imageset │ │ ├── Contents.json │ │ └── guide_arrow_right@2x.png │ ├── guide_arrow_up.imageset │ │ ├── Contents.json │ │ └── guide_arrow_up@2x.png │ ├── guide_explore_next_page.imageset │ │ ├── Contents.json │ │ ├── guide_explore_next_page.png │ │ └── guide_explore_next_page@2x.png │ ├── guide_explore_previous_page.imageset │ │ ├── Contents.json │ │ ├── guide_explore_previous_page.png │ │ └── guide_explore_previous_page@2x.png │ ├── guide_navbar_search.imageset │ │ ├── Contents.json │ │ ├── guide_navbar_search.png │ │ └── guide_navbar_search@2x.png │ ├── guide_player_panorama.imageset │ │ ├── Contents.json │ │ ├── guide_player_panorama.png │ │ └── guide_player_panorama@2x.png │ ├── ic_accessory_arrow_black.imageset │ │ ├── Contents.json │ │ ├── ic_accessory_arrow_black.png │ │ └── ic_accessory_arrow_black@2x.png │ ├── ic_accessory_arrow_grey.imageset │ │ ├── Contents.json │ │ └── ic_accessory_arrow_grey@2x.png │ ├── ic_accessory_arrow_white.imageset │ │ ├── Contents.json │ │ └── ic_accessory_arrow_white@2x.png │ ├── ic_banner_arrow_up.imageset │ │ ├── Contents.json │ │ └── ic_banner_arrow_up@2x.png │ ├── ic_card_preview.imageset │ │ ├── Contents.json │ │ ├── ic_card_preview.png │ │ └── ic_card_preview@2x.png │ ├── ic_card_reload.imageset │ │ ├── Contents.json │ │ ├── ic_card_reload.png │ │ └── ic_card_reload@2x.png │ ├── ic_loading_error.imageset │ │ ├── Contents.json │ │ ├── ic_loading_error.png │ │ └── ic_loading_error@2x.png │ ├── ic_player_seek_backward.imageset │ │ ├── Contents.json │ │ ├── ic_player_seek_backward.png │ │ └── ic_player_seek_backward@2x.png │ ├── ic_player_seek_forward.imageset │ │ ├── Contents.json │ │ ├── ic_player_seek_forward.png │ │ └── ic_player_seek_forward@2x.png │ ├── ic_search_grey.imageset │ │ ├── Contents.json │ │ ├── ic_search_grey.png │ │ └── ic_search_grey@2x.png │ ├── ic_slider_thumb.imageset │ │ ├── Contents.json │ │ ├── ic_slider_thumb.png │ │ └── ic_slider_thumb@2x.png │ ├── ic_tab_1.imageset │ │ ├── Contents.json │ │ └── ic_tab_1@2x.png │ ├── ic_tab_1_selected.imageset │ │ ├── Contents.json │ │ └── ic_tab_1_selected@2x.png │ ├── ic_tab_2.imageset │ │ ├── Contents.json │ │ └── ic_tab_2@2x.png │ ├── ic_tab_2_selected.imageset │ │ ├── Contents.json │ │ └── ic_tab_2_selected@2x.png │ ├── ic_tab_3.imageset │ │ ├── Contents.json │ │ └── ic_tab_3@2x.png │ ├── ic_tab_3_selected.imageset │ │ ├── Contents.json │ │ └── ic_tab_3_selected@2x.png │ ├── ic_tab_4.imageset │ │ ├── Contents.json │ │ └── ic_tab_4@2x.png │ ├── ic_tab_4_red.imageset │ │ ├── Contents.json │ │ └── ic_tab_4_red@2x.png │ ├── ic_tab_4_selected.imageset │ │ ├── Contents.json │ │ └── ic_tab_4_selected@2x.png │ ├── ic_video_close.imageset │ │ ├── Contents.json │ │ └── ic_video_close@2x.png │ ├── ic_video_comment.imageset │ │ ├── Contents.json │ │ └── ic_video_comment@2x.png │ ├── ic_video_detail_up_guide.imageset │ │ ├── Contents.json │ │ └── ic_video_detail_up_guide@2x.png │ ├── ic_video_dismiss.imageset │ │ ├── Contents.json │ │ └── ic_video_dismiss@2x.png │ ├── ic_video_download.imageset │ │ ├── Contents.json │ │ └── ic_video_download@2x.png │ ├── ic_video_download_retry.imageset │ │ ├── Contents.json │ │ └── ic_video_download_retry@2x.png │ ├── ic_video_entry.imageset │ │ ├── Contents.json │ │ └── ic_video_entry@2x.png │ ├── ic_video_like.imageset │ │ ├── Contents.json │ │ └── ic_video_like@2x.png │ ├── ic_video_liked.imageset │ │ ├── Contents.json │ │ └── ic_video_liked@2x.png │ ├── ic_video_share.imageset │ │ ├── Contents.json │ │ └── ic_video_share@2x.png │ ├── icon_loading_eye_in.imageset │ │ ├── Contents.json │ │ └── icon_loading_eye_in@2x.png │ ├── icon_loading_eye_in_white_big.imageset │ │ ├── Contents.json │ │ └── icon_loading_eye_in_white_big@2x.png │ ├── icon_loading_eye_out.imageset │ │ ├── Contents.json │ │ └── icon_loading_eye_out@2x.png │ ├── icon_loading_eye_out_white_big.imageset │ │ ├── Contents.json │ │ └── icon_loading_eye_out_white_big@2x.png │ ├── icon_loading_video.imageset │ │ ├── Contents.json │ │ ├── icon_loading_video.png │ │ └── icon_loading_video@2x.png │ ├── nav_share.imageset │ │ ├── Contents.json │ │ ├── nav_share.png │ │ └── nav_share@2x.png │ ├── s_1136_huajijiazu_huaji.imageset │ │ ├── Contents.json │ │ └── s_1136_huajijiazu_huaji.png │ ├── screenshot_frame.imageset │ │ ├── Contents.json │ │ └── screenshot_frame@2x.png │ ├── screenshot_watermark.imageset │ │ ├── Contents.json │ │ └── screenshot_watermark@2x.png │ ├── shadow1px.imageset │ │ ├── Contents.json │ │ └── shadow1px.png │ ├── share_frame.imageset │ │ ├── Contents.json │ │ └── share_frame@2x.png │ ├── share_frame_small.imageset │ │ ├── Contents.json │ │ └── share_frame_small.png │ ├── share_watermark.imageset │ │ ├── Contents.json │ │ └── share_watermark@2x.png │ ├── sina_weibo.imageset │ │ ├── Contents.json │ │ ├── sina_weibo.png │ │ └── sina_weibo@2x.png │ ├── skip.imageset │ │ ├── Contents.json │ │ └── skip@2x.png │ ├── tab_Setting.imageset │ │ ├── Contents.json │ │ ├── tab_Setting.png │ │ └── tab_Setting@2x.png │ ├── tab_category.imageset │ │ ├── Contents.json │ │ ├── tab_category.png │ │ └── tab_category@2x.png │ ├── tab_category_selected.imageset │ │ ├── Contents.json │ │ ├── tab_category_selected.png │ │ └── tab_category_selected@2x.png │ ├── tab_dailyselect.imageset │ │ ├── Contents.json │ │ ├── tab_dailyselect.png │ │ └── tab_dailyselect@2x.png │ ├── tab_download.imageset │ │ ├── Contents.json │ │ ├── tab_download.png │ │ └── tab_download@2x.png │ ├── tab_liked.imageset │ │ ├── Contents.json │ │ ├── tab_liked.png │ │ └── tab_liked@2x.png │ ├── tab_liked_selected.imageset │ │ ├── Contents.json │ │ ├── tab_liked_selected.png │ │ └── tab_liked_selected@2x.png │ ├── tableView_arrow_icon.imageset │ │ ├── Contents.json │ │ ├── tableView_arrow_icon.png │ │ ├── tableView_arrow_icon@2x.png │ │ └── tableView_arrow_icon@3x.png │ ├── wechat.imageset │ │ ├── Contents.json │ │ ├── wechat.png │ │ └── wechat@2x.png │ └── weixin_timeline.imageset │ │ ├── Contents.json │ │ ├── weixin_timeline.png │ │ └── weixin_timeline@2x.png ├── AuthorVideoSetViewController.h ├── AuthorVideoSetViewController.m ├── AuthorView.h ├── AuthorView.m ├── AuthorView.xib ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BottomPageView.h ├── BottomPageView.m ├── BottomPageView.xib ├── FXBlurView.h ├── FXBlurView.m ├── FZLTXIHJW--GB1-0.TTF ├── FZLTZCHJW--GB1-0.TTF ├── FindCollectionViewCell.h ├── FindCollectionViewCell.m ├── FindCollectionViewCell.xib ├── FindDetailsCollectionViewCell.h ├── FindDetailsCollectionViewCell.m ├── FindDetailsCollectionViewCell.xib ├── FindDetailsCollectionViewFlowLayout.h ├── FindDetailsCollectionViewFlowLayout.m ├── FindDetailsTableHeaderView.h ├── FindDetailsTableHeaderView.m ├── FindDetailsTableHeaderView.xib ├── FindDetailsTableViewCell.h ├── FindDetailsTableViewCell.m ├── FindDetailsViewController.h ├── FindDetailsViewController.m ├── FindViewController.h ├── FindViewController.m ├── GLProgram.h ├── GLProgram.m ├── HomeTableViewCell.h ├── HomeTableViewCell.m ├── HomeViewController.h ├── HomeViewController.m ├── HyContentView.h ├── HyContentView.m ├── HyContentView.xib ├── HyHelper.h ├── HyHelper.m ├── HyImages.h ├── HyImages.m ├── HyInteractiveTransition.h ├── HyInteractiveTransition.m ├── HyLaunchView.h ├── HyLaunchView.m ├── HyLaunchView.xib ├── HyPlayVideoLayer.h ├── HyPlayVideoLayer.m ├── HySlideView.h ├── HySlideView.m ├── HyTableViewCellFooterView.h ├── HyTableViewCellFooterView.m ├── HyTableViewCellFooterView.xib ├── HyTableViewFooterView.h ├── HyTableViewFooterView.m ├── HyTableViewFooterView.xib ├── HyTableViewFooterViewCollectionViewCell.h ├── HyTableViewFooterViewCollectionViewCell.m ├── HyTableViewFooterViewCollectionViewCell.xib ├── HyTableViewHeaderView.h ├── HyTableViewHeaderView.m ├── HyTextGradientAnimation.h ├── HyTextGradientAnimation.m ├── HytextGraduallyShowAnimation.h ├── HytextGraduallyShowAnimation.m ├── Info.plist ├── Lobster 1.4.otf ├── LxVolumeManager.h ├── LxVolumeManager.m ├── Math.h ├── Math.m ├── MoreInfoView.h ├── MoreInfoView.m ├── NSAttributedString+LabelWidthAndHeight.h ├── NSAttributedString+LabelWidthAndHeight.m ├── NSString+FindCellSize.h ├── NSString+FindCellSize.m ├── NSString+LabelWidthAndHeight.h ├── NSString+LabelWidthAndHeight.m ├── NSString+Range.h ├── NSString+Range.m ├── NetworkRequestManage.h ├── NetworkRequestManage.m ├── OpenEyesViewController.h ├── OpenEyesViewController.m ├── PlayVideoToolsView.h ├── PlayVideoToolsView.m ├── PlayVideoToolsView.xib ├── PlayVideoViewController.h ├── PlayVideoViewController.m ├── ScrollComputingValue.h ├── ScrollComputingValue.m ├── TabBarView.h ├── TabBarView.m ├── UIImage+ImageEffects.h ├── UIImage+ImageEffects.m ├── UIView+AnimationPracticalMethod.h ├── UIView+AnimationPracticalMethod.m ├── UIView+AnimationProperty.h ├── UIView+AnimationProperty.m ├── UIView+ConvenientMethod.h ├── UIView+ConvenientMethod.m ├── UIView+FontSize.h ├── UIView+FontSize.m ├── UIView+GlowView.h ├── UIView+GlowView.m ├── UIView+ScreensShot.h ├── UIView+ScreensShot.m ├── UIView+SetRect.h ├── UIView+SetRect.m ├── UIView+Shake.h ├── UIView+Shake.m ├── UIView+UserInteraction.h ├── UIView+UserInteraction.m ├── VideoDetailsView.h ├── VideoDetailsView.m ├── VideoDetailsView.xib ├── VideoDetailsViewController.h ├── VideoDetailsViewController.m ├── YDSlider.h ├── YDSlider.m ├── ZCAnimatedLabel │ ├── ZCAnimatedLabel.h │ ├── ZCAnimatedLabel.m │ ├── ZCCoreTextLayout.h │ ├── ZCCoreTextLayout.m │ ├── ZCDashLabel.h │ ├── ZCDashLabel.m │ ├── ZCDuangLabel.h │ ├── ZCDuangLabel.m │ ├── ZCEasingUtil.h │ ├── ZCEasingUtil.m │ ├── ZCFallLabel.h │ ├── ZCFallLabel.m │ ├── ZCFlyinLabel.h │ ├── ZCFlyinLabel.m │ ├── ZCFocusLabel.h │ ├── ZCFocusLabel.m │ ├── ZCRevealLabel.h │ ├── ZCRevealLabel.m │ ├── ZCShapeshiftLabel.h │ ├── ZCShapeshiftLabel.m │ ├── ZCSpinLabel.h │ ├── ZCSpinLabel.m │ ├── ZCThrownLabel.h │ ├── ZCThrownLabel.m │ ├── ZCTransparencyLabel.h │ └── ZCTransparencyLabel.m ├── ZYBannerView │ ├── ZYBannerCell.h │ ├── ZYBannerCell.m │ ├── ZYBannerFooter.h │ ├── ZYBannerFooter.m │ ├── ZYBannerView.bundle │ │ └── banner_arrow@2x.png │ ├── ZYBannerView.h │ └── ZYBannerView.m ├── downToolsView.h ├── downToolsView.m ├── main.m └── model │ ├── Author.h │ ├── Author.m │ ├── BaseClass.h │ ├── BaseClass.m │ ├── Consumption.h │ ├── Consumption.m │ ├── Cover.h │ ├── Cover.m │ ├── Data.h │ ├── Data.m │ ├── DataModels.h │ ├── Follow.h │ ├── Follow.m │ ├── Footer.h │ ├── Footer.m │ ├── Header.h │ ├── Header.m │ ├── ItemList.h │ ├── ItemList.m │ ├── Label.h │ ├── Label.m │ ├── PlayInfo.h │ ├── PlayInfo.m │ ├── Provider.h │ ├── Provider.m │ ├── SectionList.h │ ├── SectionList.m │ ├── Tags.h │ ├── Tags.m │ ├── WebUrl.h │ └── WebUrl.m ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── MD360Player4iOS │ │ │ ├── GLUtil.h │ │ │ ├── MD360Director.h │ │ │ ├── MD360Program.h │ │ │ ├── MD360Renderer.h │ │ │ ├── MD360Texture.h │ │ │ ├── MDAbsObject3D.h │ │ │ ├── MDDisplayStrategy.h │ │ │ ├── MDGLKViewController.h │ │ │ ├── MDGLRendererDelegate.h │ │ │ ├── MDInteractiveStrategy.h │ │ │ ├── MDModeStrategy.h │ │ │ ├── MDObject3DHelper.h │ │ │ ├── MDProjectionStrategy.h │ │ │ ├── MDTouchHelper.h │ │ │ ├── MDVRHeader.h │ │ │ ├── MDVRLibrary.h │ │ │ ├── MDVideoDataAdapter.h │ │ │ └── MDVideoDataAdatperAVPlayerImpl.h │ │ ├── VIMVideoPlayer │ │ │ ├── VIMVideoPlayer.h │ │ │ └── VIMVideoPlayerView.h │ │ └── YYKit │ │ │ ├── CALayer+YYAdd.h │ │ │ ├── CALayer+YYWebImage.h │ │ │ ├── MKAnnotationView+YYWebImage.h │ │ │ ├── NSArray+YYAdd.h │ │ │ ├── NSAttributedString+YYText.h │ │ │ ├── NSBundle+YYAdd.h │ │ │ ├── NSData+YYAdd.h │ │ │ ├── NSDate+YYAdd.h │ │ │ ├── NSDictionary+YYAdd.h │ │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ │ ├── NSNotificationCenter+YYAdd.h │ │ │ ├── NSNumber+YYAdd.h │ │ │ ├── NSObject+YYAdd.h │ │ │ ├── NSObject+YYAddForARC.h │ │ │ ├── NSObject+YYAddForKVO.h │ │ │ ├── NSObject+YYModel.h │ │ │ ├── NSParagraphStyle+YYText.h │ │ │ ├── NSString+YYAdd.h │ │ │ ├── NSThread+YYAdd.h │ │ │ ├── NSTimer+YYAdd.h │ │ │ ├── UIApplication+YYAdd.h │ │ │ ├── UIBarButtonItem+YYAdd.h │ │ │ ├── UIBezierPath+YYAdd.h │ │ │ ├── UIButton+YYWebImage.h │ │ │ ├── UIColor+YYAdd.h │ │ │ ├── UIControl+YYAdd.h │ │ │ ├── UIDevice+YYAdd.h │ │ │ ├── UIFont+YYAdd.h │ │ │ ├── UIGestureRecognizer+YYAdd.h │ │ │ ├── UIImage+YYAdd.h │ │ │ ├── UIImageView+YYWebImage.h │ │ │ ├── UIPasteboard+YYText.h │ │ │ ├── UIScreen+YYAdd.h │ │ │ ├── UIScrollView+YYAdd.h │ │ │ ├── UITableView+YYAdd.h │ │ │ ├── UITextField+YYAdd.h │ │ │ ├── UIView+YYAdd.h │ │ │ ├── YYAnimatedImageView.h │ │ │ ├── YYAsyncLayer.h │ │ │ ├── YYCGUtilities.h │ │ │ ├── YYCache.h │ │ │ ├── YYClassInfo.h │ │ │ ├── YYDiskCache.h │ │ │ ├── YYDispatchQueuePool.h │ │ │ ├── YYFileHash.h │ │ │ ├── YYFrameImage.h │ │ │ ├── YYGestureRecognizer.h │ │ │ ├── YYImage.h │ │ │ ├── YYImageCache.h │ │ │ ├── YYImageCoder.h │ │ │ ├── YYKVStorage.h │ │ │ ├── YYKeychain.h │ │ │ ├── YYKit.h │ │ │ ├── YYKitMacro.h │ │ │ ├── YYLabel.h │ │ │ ├── YYMemoryCache.h │ │ │ ├── YYReachability.h │ │ │ ├── YYSentinel.h │ │ │ ├── YYSpriteSheetImage.h │ │ │ ├── YYTextArchiver.h │ │ │ ├── YYTextAttribute.h │ │ │ ├── YYTextContainerView.h │ │ │ ├── YYTextDebugOption.h │ │ │ ├── YYTextEffectWindow.h │ │ │ ├── YYTextInput.h │ │ │ ├── YYTextKeyboardManager.h │ │ │ ├── YYTextLayout.h │ │ │ ├── YYTextLine.h │ │ │ ├── YYTextMagnifier.h │ │ │ ├── YYTextParser.h │ │ │ ├── YYTextRubyAnnotation.h │ │ │ ├── YYTextRunDelegate.h │ │ │ ├── YYTextSelectionView.h │ │ │ ├── YYTextUtilities.h │ │ │ ├── YYTextView.h │ │ │ ├── YYThreadSafeArray.h │ │ │ ├── YYThreadSafeDictionary.h │ │ │ ├── YYTimer.h │ │ │ ├── YYTransaction.h │ │ │ ├── YYWeakProxy.h │ │ │ ├── YYWebImageManager.h │ │ │ ├── YYWebImageOperation.h │ │ │ └── _YYWebImageSetter.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── MD360Player4iOS │ │ ├── GLUtil.h │ │ ├── MD360Director.h │ │ ├── MD360Program.h │ │ ├── MD360Renderer.h │ │ ├── MD360Texture.h │ │ ├── MDAbsObject3D.h │ │ ├── MDDisplayStrategy.h │ │ ├── MDGLKViewController.h │ │ ├── MDGLRendererDelegate.h │ │ ├── MDInteractiveStrategy.h │ │ ├── MDModeStrategy.h │ │ ├── MDObject3DHelper.h │ │ ├── MDProjectionStrategy.h │ │ ├── MDTouchHelper.h │ │ ├── MDVRHeader.h │ │ ├── MDVRLibrary.h │ │ ├── MDVideoDataAdapter.h │ │ └── MDVideoDataAdatperAVPlayerImpl.h │ │ ├── VIMVideoPlayer │ │ ├── VIMVideoPlayer.h │ │ └── VIMVideoPlayerView.h │ │ └── YYKit │ │ ├── CALayer+YYAdd.h │ │ ├── CALayer+YYWebImage.h │ │ ├── MKAnnotationView+YYWebImage.h │ │ ├── NSArray+YYAdd.h │ │ ├── NSAttributedString+YYText.h │ │ ├── NSBundle+YYAdd.h │ │ ├── NSData+YYAdd.h │ │ ├── NSDate+YYAdd.h │ │ ├── NSDictionary+YYAdd.h │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ ├── NSNotificationCenter+YYAdd.h │ │ ├── NSNumber+YYAdd.h │ │ ├── NSObject+YYAdd.h │ │ ├── NSObject+YYAddForARC.h │ │ ├── NSObject+YYAddForKVO.h │ │ ├── NSObject+YYModel.h │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSString+YYAdd.h │ │ ├── NSThread+YYAdd.h │ │ ├── NSTimer+YYAdd.h │ │ ├── UIApplication+YYAdd.h │ │ ├── UIBarButtonItem+YYAdd.h │ │ ├── UIBezierPath+YYAdd.h │ │ ├── UIButton+YYWebImage.h │ │ ├── UIColor+YYAdd.h │ │ ├── UIControl+YYAdd.h │ │ ├── UIDevice+YYAdd.h │ │ ├── UIFont+YYAdd.h │ │ ├── UIGestureRecognizer+YYAdd.h │ │ ├── UIImage+YYAdd.h │ │ ├── UIImageView+YYWebImage.h │ │ ├── UIPasteboard+YYText.h │ │ ├── UIScreen+YYAdd.h │ │ ├── UIScrollView+YYAdd.h │ │ ├── UITableView+YYAdd.h │ │ ├── UITextField+YYAdd.h │ │ ├── UIView+YYAdd.h │ │ ├── WebP │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ ├── YYAnimatedImageView.h │ │ ├── YYAsyncLayer.h │ │ ├── YYCGUtilities.h │ │ ├── YYCache.h │ │ ├── YYClassInfo.h │ │ ├── YYDiskCache.h │ │ ├── YYDispatchQueuePool.h │ │ ├── YYFileHash.h │ │ ├── YYFrameImage.h │ │ ├── YYGestureRecognizer.h │ │ ├── YYImage.h │ │ ├── YYImageCache.h │ │ ├── YYImageCoder.h │ │ ├── YYKVStorage.h │ │ ├── YYKeychain.h │ │ ├── YYKit.h │ │ ├── YYKitMacro.h │ │ ├── YYLabel.h │ │ ├── YYMemoryCache.h │ │ ├── YYReachability.h │ │ ├── YYSentinel.h │ │ ├── YYSpriteSheetImage.h │ │ ├── YYTextArchiver.h │ │ ├── YYTextAttribute.h │ │ ├── YYTextContainerView.h │ │ ├── YYTextDebugOption.h │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextInput.h │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextLayout.h │ │ ├── YYTextLine.h │ │ ├── YYTextMagnifier.h │ │ ├── YYTextParser.h │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextSelectionView.h │ │ ├── YYTextUtilities.h │ │ ├── YYTextView.h │ │ ├── YYThreadSafeArray.h │ │ ├── YYThreadSafeDictionary.h │ │ ├── YYTimer.h │ │ ├── YYTransaction.h │ │ ├── YYWeakProxy.h │ │ ├── YYWebImageManager.h │ │ ├── YYWebImageOperation.h │ │ └── _YYWebImageSetter.h ├── MD360Player4iOS │ ├── LICENSE │ ├── MDVRLibrary │ │ └── MDVRLibrary │ │ │ ├── GLUtil.h │ │ │ ├── GLUtil.m │ │ │ ├── MD360Director.h │ │ │ ├── MD360Director.m │ │ │ ├── MD360Program.h │ │ │ ├── MD360Program.m │ │ │ ├── MD360Renderer.h │ │ │ ├── MD360Renderer.m │ │ │ ├── MD360Texture.h │ │ │ ├── MD360Texture.m │ │ │ ├── MDAbsObject3D.h │ │ │ ├── MDAbsObject3D.m │ │ │ ├── MDDisplayStrategy.h │ │ │ ├── MDDisplayStrategy.m │ │ │ ├── MDDome3D.m │ │ │ ├── MDGLKViewController.h │ │ │ ├── MDGLKViewController.m │ │ │ ├── MDGLRendererDelegate.h │ │ │ ├── MDInteractiveStrategy.h │ │ │ ├── MDInteractiveStrategy.m │ │ │ ├── MDModeStrategy.h │ │ │ ├── MDModeStrategy.m │ │ │ ├── MDObject3DHelper.h │ │ │ ├── MDObject3DHelper.m │ │ │ ├── MDProjectionStrategy.h │ │ │ ├── MDProjectionStrategy.m │ │ │ ├── MDSphere3D.m │ │ │ ├── MDStereoSphere3D.m │ │ │ ├── MDTouchHelper.h │ │ │ ├── MDTouchHelper.m │ │ │ ├── MDVRHeader.h │ │ │ ├── MDVRLibrary.h │ │ │ ├── MDVRLibrary.m │ │ │ ├── MDVideoDataAdapter.h │ │ │ ├── MDVideoDataAdatperAVPlayerImpl.h │ │ │ ├── MDVideoDataAdatperAVPlayerImpl.m │ │ │ └── vrlibraw.bundle │ │ │ ├── Root.plist │ │ │ ├── dome.obj │ │ │ ├── en.lproj │ │ │ └── Root.strings │ │ │ ├── per_pixel_fragment_shader.glsl │ │ │ ├── per_pixel_fragment_shader_bitmap.glsl │ │ │ └── per_pixel_vertex_shader.glsl │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── huyi.xcuserdatad │ │ └── xcschemes │ │ ├── AFNetworking.xcscheme │ │ ├── MD360Player4iOS.xcscheme │ │ ├── Pods-OpenEyesDemo.xcscheme │ │ ├── VIMVideoPlayer.xcscheme │ │ ├── YYKit.xcscheme │ │ └── xcschememanagement.plist ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ ├── MD360Player4iOS │ │ ├── MD360Player4iOS-dummy.m │ │ ├── MD360Player4iOS-prefix.pch │ │ └── MD360Player4iOS.xcconfig │ ├── Pods-OpenEyesDemo │ │ ├── Pods-OpenEyesDemo-acknowledgements.markdown │ │ ├── Pods-OpenEyesDemo-acknowledgements.plist │ │ ├── Pods-OpenEyesDemo-dummy.m │ │ ├── Pods-OpenEyesDemo-frameworks.sh │ │ ├── Pods-OpenEyesDemo-resources.sh │ │ ├── Pods-OpenEyesDemo.debug.xcconfig │ │ └── Pods-OpenEyesDemo.release.xcconfig │ ├── VIMVideoPlayer │ │ ├── VIMVideoPlayer-dummy.m │ │ ├── VIMVideoPlayer-prefix.pch │ │ └── VIMVideoPlayer.xcconfig │ └── YYKit │ │ ├── YYKit-dummy.m │ │ ├── YYKit-prefix.pch │ │ └── YYKit.xcconfig ├── VIMVideoPlayer │ ├── LICENSE.md │ ├── README.md │ └── VIMVideoPlayer-Source │ │ ├── VIMVideoPlayer.h │ │ ├── VIMVideoPlayer.m │ │ ├── VIMVideoPlayerView.h │ │ └── VIMVideoPlayerView.m └── YYKit │ ├── LICENSE │ ├── README.md │ ├── Vendor │ └── WebP.framework │ │ ├── Headers │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ └── WebP │ └── YYKit │ ├── Base │ ├── Foundation │ │ ├── NSArray+YYAdd.h │ │ ├── NSArray+YYAdd.m │ │ ├── NSBundle+YYAdd.h │ │ ├── NSBundle+YYAdd.m │ │ ├── NSData+YYAdd.h │ │ ├── NSData+YYAdd.m │ │ ├── NSDate+YYAdd.h │ │ ├── NSDate+YYAdd.m │ │ ├── NSDictionary+YYAdd.h │ │ ├── NSDictionary+YYAdd.m │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ ├── NSKeyedUnarchiver+YYAdd.m │ │ ├── NSNotificationCenter+YYAdd.h │ │ ├── NSNotificationCenter+YYAdd.m │ │ ├── NSNumber+YYAdd.h │ │ ├── NSNumber+YYAdd.m │ │ ├── NSObject+YYAdd.h │ │ ├── NSObject+YYAdd.m │ │ ├── NSObject+YYAddForARC.h │ │ ├── NSObject+YYAddForARC.m │ │ ├── NSObject+YYAddForKVO.h │ │ ├── NSObject+YYAddForKVO.m │ │ ├── NSString+YYAdd.h │ │ ├── NSString+YYAdd.m │ │ ├── NSThread+YYAdd.h │ │ ├── NSThread+YYAdd.m │ │ ├── NSTimer+YYAdd.h │ │ └── NSTimer+YYAdd.m │ ├── Quartz │ │ ├── CALayer+YYAdd.h │ │ ├── CALayer+YYAdd.m │ │ ├── YYCGUtilities.h │ │ └── YYCGUtilities.m │ ├── UIKit │ │ ├── UIApplication+YYAdd.h │ │ ├── UIApplication+YYAdd.m │ │ ├── UIBarButtonItem+YYAdd.h │ │ ├── UIBarButtonItem+YYAdd.m │ │ ├── UIBezierPath+YYAdd.h │ │ ├── UIBezierPath+YYAdd.m │ │ ├── UIColor+YYAdd.h │ │ ├── UIColor+YYAdd.m │ │ ├── UIControl+YYAdd.h │ │ ├── UIControl+YYAdd.m │ │ ├── UIDevice+YYAdd.h │ │ ├── UIDevice+YYAdd.m │ │ ├── UIFont+YYAdd.h │ │ ├── UIFont+YYAdd.m │ │ ├── UIGestureRecognizer+YYAdd.h │ │ ├── UIGestureRecognizer+YYAdd.m │ │ ├── UIImage+YYAdd.h │ │ ├── UIImage+YYAdd.m │ │ ├── UIScreen+YYAdd.h │ │ ├── UIScreen+YYAdd.m │ │ ├── UIScrollView+YYAdd.h │ │ ├── UIScrollView+YYAdd.m │ │ ├── UITableView+YYAdd.h │ │ ├── UITableView+YYAdd.m │ │ ├── UITextField+YYAdd.h │ │ ├── UITextField+YYAdd.m │ │ ├── UIView+YYAdd.h │ │ └── UIView+YYAdd.m │ └── YYKitMacro.h │ ├── Cache │ ├── YYCache.h │ ├── YYCache.m │ ├── YYDiskCache.h │ ├── YYDiskCache.m │ ├── YYKVStorage.h │ ├── YYKVStorage.m │ ├── YYMemoryCache.h │ └── YYMemoryCache.m │ ├── Image │ ├── Categories │ │ ├── CALayer+YYWebImage.h │ │ ├── CALayer+YYWebImage.m │ │ ├── MKAnnotationView+YYWebImage.h │ │ ├── MKAnnotationView+YYWebImage.m │ │ ├── UIButton+YYWebImage.h │ │ ├── UIButton+YYWebImage.m │ │ ├── UIImageView+YYWebImage.h │ │ ├── UIImageView+YYWebImage.m │ │ ├── _YYWebImageSetter.h │ │ └── _YYWebImageSetter.m │ ├── YYAnimatedImageView.h │ ├── YYAnimatedImageView.m │ ├── YYFrameImage.h │ ├── YYFrameImage.m │ ├── YYImage.h │ ├── YYImage.m │ ├── YYImageCache.h │ ├── YYImageCache.m │ ├── YYImageCoder.h │ ├── YYImageCoder.m │ ├── YYSpriteSheetImage.h │ ├── YYSpriteSheetImage.m │ ├── YYWebImageManager.h │ ├── YYWebImageManager.m │ ├── YYWebImageOperation.h │ └── YYWebImageOperation.m │ ├── Model │ ├── NSObject+YYModel.h │ ├── NSObject+YYModel.m │ ├── YYClassInfo.h │ └── YYClassInfo.m │ ├── Text │ ├── Component │ │ ├── YYTextContainerView.h │ │ ├── YYTextContainerView.m │ │ ├── YYTextDebugOption.h │ │ ├── YYTextDebugOption.m │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextEffectWindow.m │ │ ├── YYTextInput.h │ │ ├── YYTextInput.m │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextKeyboardManager.m │ │ ├── YYTextLayout.h │ │ ├── YYTextLayout.m │ │ ├── YYTextLine.h │ │ ├── YYTextLine.m │ │ ├── YYTextMagnifier.h │ │ ├── YYTextMagnifier.m │ │ ├── YYTextSelectionView.h │ │ └── YYTextSelectionView.m │ ├── String │ │ ├── NSAttributedString+YYText.h │ │ ├── NSAttributedString+YYText.m │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSParagraphStyle+YYText.m │ │ ├── UIPasteboard+YYText.h │ │ ├── UIPasteboard+YYText.m │ │ ├── YYTextArchiver.h │ │ ├── YYTextArchiver.m │ │ ├── YYTextAttribute.h │ │ ├── YYTextAttribute.m │ │ ├── YYTextParser.h │ │ ├── YYTextParser.m │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRubyAnnotation.m │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextRunDelegate.m │ │ ├── YYTextUtilities.h │ │ └── YYTextUtilities.m │ ├── YYLabel.h │ ├── YYLabel.m │ ├── YYTextView.h │ └── YYTextView.m │ ├── Utility │ ├── YYAsyncLayer.h │ ├── YYAsyncLayer.m │ ├── YYDispatchQueuePool.h │ ├── YYDispatchQueuePool.m │ ├── YYFileHash.h │ ├── YYFileHash.m │ ├── YYGestureRecognizer.h │ ├── YYGestureRecognizer.m │ ├── YYKeychain.h │ ├── YYKeychain.m │ ├── YYReachability.h │ ├── YYReachability.m │ ├── YYSentinel.h │ ├── YYSentinel.m │ ├── YYThreadSafeArray.h │ ├── YYThreadSafeArray.m │ ├── YYThreadSafeDictionary.h │ ├── YYThreadSafeDictionary.m │ ├── YYTimer.h │ ├── YYTimer.m │ ├── YYTransaction.h │ ├── YYTransaction.m │ ├── YYWeakProxy.h │ └── YYWeakProxy.m │ └── YYKit.h ├── README.md └── Resources ├── 开眼-下拉刷新.gif ├── 开眼-发现.gif ├── 开眼-发现详情.gif ├── 开眼-视频详情.gif ├── 开眼-转场动画.gif ├── 开眼-载入MOV.gif └── 视频详情-更多.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | OpenEyesDemo/UIView+SetRect.m 3 | -------------------------------------------------------------------------------- /OpenEyesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /OpenEyesDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /OpenEyesDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/25. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ R4.7.imageset/ R4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ R4.7.imageset/ R4.7.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ R4.7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : " R4.7.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/1.imageset/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/1.imageset/1.jpg -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/2.imageset/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/2.imageset/2.jpg -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "2.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/3.imageset/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/3.imageset/3.jpg -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "3.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/4.imageset/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/4.imageset/4.jpg -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "4.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/5.imageset/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/5.imageset/5.jpg -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "5.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Airplay-blue.imageset/Action_Airplay-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Airplay-blue.imageset/Action_Airplay-blue@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Airplay.imageset/Action_Airplay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Airplay.imageset/Action_Airplay@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Airplay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Airplay@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Edit.imageset/Action_Edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Edit.imageset/Action_Edit@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Edit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Edit@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Focus.imageset/Action_Focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Focus.imageset/Action_Focus@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Focus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Focus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Focus_white.imageset/Action_Focus_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Focus_white.imageset/Action_Focus_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_HD.imageset/Action_HD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_HD.imageset/Action_HD@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_HD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_HD@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_LD.imageset/Action_LD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_LD.imageset/Action_LD@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_LD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_LD@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Like.imageset/Action_Like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Like.imageset/Action_Like@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Like@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Like_grey.imageset/Action_Like_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Like_grey.imageset/Action_Like_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Like_grey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Like_grey@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Liked.imageset/Action_Liked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Liked.imageset/Action_Liked@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Liked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Liked@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Menu.imageset/Action_Menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Menu.imageset/Action_Menu@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Menu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Menu@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_PIP.imageset/Action_PIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_PIP.imageset/Action_PIP.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_PIP.imageset/Action_PIP@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_PIP.imageset/Action_PIP@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_SD.imageset/Action_SD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_SD.imageset/Action_SD@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_SD.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_SD@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Screenshots.imageset/Action_Screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Screenshots.imageset/Action_Screenshots.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Screenshots.imageset/Action_Screenshots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Screenshots.imageset/Action_Screenshots@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Setting.imageset/Action_Setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Setting.imageset/Action_Setting@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Setting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Setting@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Share.imageset/Action_Share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Share.imageset/Action_Share@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Share@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_TopCharts.imageset/Action_TopCharts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_TopCharts.imageset/Action_TopCharts@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_TopCharts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_TopCharts@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Volume+.imageset/Action_Volume+@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Volume+.imageset/Action_Volume+@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Volume+.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Volume+@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Volume-.imageset/Action_Volume-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_Volume-.imageset/Action_Volume-@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_Volume-.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_Volume-@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_backward.imageset/Action_backward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_backward.imageset/Action_backward@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_backward.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_backward@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_backward_white.imageset/Action_backward_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_backward_white.imageset/Action_backward_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_cancel.imageset/Action_cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_cancel.imageset/Action_cancel@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_cancel.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_cancel@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_cancel_small_grey.imageset/Action_cancel_small_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_cancel_small_grey.imageset/Action_cancel_small_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_close.imageset/Action_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_close.imageset/Action_close@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_close@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_close_white.imageset/Action_close_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_close_white.imageset/Action_close_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_confirm_white.imageset/Action_confirm_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_confirm_white.imageset/Action_confirm_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_down.imageset/Action_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_down.imageset/Action_down@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_down@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_download.imageset/Action_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_download.imageset/Action_download@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_download.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_download@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_more_small_grey.imageset/Action_more_small_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_more_small_grey.imageset/Action_more_small_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_next.imageset/Action_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_next.imageset/Action_next@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_next.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_next@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_pause.imageset/Action_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_pause.imageset/Action_pause@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_pause.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_pause@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_play.imageset/Action_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_play.imageset/Action_play@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_play.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_play@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_play_click.imageset/Action_play_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_play_click.imageset/Action_play_click@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_play_click.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_play_click@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_reload.imageset/Action_reload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_reload.imageset/Action_reload@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_reload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_reload@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_reload_player.imageset/Action_reload_player@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_reload_player.imageset/Action_reload_player@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_retry.imageset/Action_retry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_retry.imageset/Action_retry@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_retry.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_retry@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_review.imageset/Action_review@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_review.imageset/Action_review@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_review.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_review@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_review_grey.imageset/Action_review_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_review_grey.imageset/Action_review_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_start.imageset/Action_start@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_start.imageset/Action_start@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_start.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_start@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_unFocus.imageset/Action_unFocus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_unFocus.imageset/Action_unFocus@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_unFocus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_unFocus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_up.imageset/Action_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Action_up.imageset/Action_up@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Action_up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Action_up@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon120x120@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon120x120@2x~ipad.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon180x180@2x~ipad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon180x180@2x~ipad-1.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon180x180@2x~ipad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon180x180@2x~ipad-2.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon180x180@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon180x180@2x~ipad.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon83.5x83.5@2x~ipad 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/AppIcon.appiconset/AppIcon83.5x83.5@2x~ipad 2.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Default_share_image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Default_share_image.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Default_share_image.imageset/Default_share_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Default_share_image.imageset/Default_share_image.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Detail_CoverBlack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Detail_CoverBlack.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Detail_CoverBlack.imageset/Detail_CoverBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Detail_CoverBlack.imageset/Detail_CoverBlack.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Home_header.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Home_header.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Home_header.imageset/Home_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Home_header.imageset/Home_header.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_EYE_black.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_EYE_black@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_EYE_black.imageset/ICON_EYE_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_EYE_black.imageset/ICON_EYE_black@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_EYE_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_EYE_white@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_EYE_white.imageset/ICON_EYE_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_EYE_white.imageset/ICON_EYE_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Loading_In.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_Loading_In@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Loading_In.imageset/ICON_Loading_In@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_Loading_In.imageset/ICON_Loading_In@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Loading_Out.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_Loading_Out@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Loading_Out.imageset/ICON_Loading_Out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_Loading_Out.imageset/ICON_Loading_Out@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Loading_Out_big.imageset/ICON_Loading_Out_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_Loading_Out_big.imageset/ICON_Loading_Out_big@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Loading_in_big.imageset/ICON_Loading_in_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_Loading_in_big.imageset/ICON_Loading_in_big@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Menu_More.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_Menu_More@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_Menu_More.imageset/ICON_Menu_More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_Menu_More.imageset/ICON_Menu_More@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_More.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_More@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_More.imageset/ICON_More@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_More.imageset/ICON_More@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_Link@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Link.imageset/ICON_SNS_Link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_Link.imageset/ICON_SNS_Link@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Moment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_Moment@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Moment.imageset/ICON_SNS_Moment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_Moment.imageset/ICON_SNS_Moment@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_QQ.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_QQ@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_QQ.imageset/ICON_SNS_QQ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_QQ.imageset/ICON_SNS_QQ@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Wechat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_Wechat@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Wechat.imageset/ICON_SNS_Wechat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_Wechat.imageset/ICON_SNS_Wechat@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Weibo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_Weibo@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Weibo.imageset/ICON_SNS_Weibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_Weibo.imageset/ICON_SNS_Weibo@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Weico.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_Weico@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_Weico.imageset/ICON_SNS_Weico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_Weico.imageset/ICON_SNS_Weico@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_facebook@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_facebook.imageset/ICON_SNS_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_facebook.imageset/ICON_SNS_facebook@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_SNS_twitter@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_SNS_twitter.imageset/ICON_SNS_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_SNS_twitter.imageset/ICON_SNS_twitter@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_error.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_error@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_error.imageset/ICON_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_error.imageset/ICON_error@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_error_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_error_white@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_error_white.imageset/ICON_error_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_error_white.imageset/ICON_error_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_review_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_review_white@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_review_white.imageset/ICON_review_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_review_white.imageset/ICON_review_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_time.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_time@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_time.imageset/ICON_time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_time.imageset/ICON_time@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ICON_up@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ICON_up.imageset/ICON_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ICON_up.imageset/ICON_up@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/ R4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/ R4.7.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/2X.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait~ipad.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/R4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/R4.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/R5.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/LaunchImage.launchimage/R5.5.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Login.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Login.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Login.imageset/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Login.imageset/Login.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Logo.imageset/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Logo.imageset/Logo.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Logo.imageset/Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Logo.imageset/Logo@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Splash_BKG.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Splash_BKG.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/Splash_BKG.imageset/Splash_BKG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/Splash_BKG.imageset/Splash_BKG.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_ic_like.imageset/action_ic_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_ic_like.imageset/action_ic_like.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_ic_like.imageset/action_ic_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_ic_like.imageset/action_ic_like@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_ic_liked.imageset/action_ic_liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_ic_liked.imageset/action_ic_liked.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_ic_liked.imageset/action_ic_liked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_ic_liked.imageset/action_ic_liked@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_menu_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "action_menu_down@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_menu_down.imageset/action_menu_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_menu_down.imageset/action_menu_down@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_motion_off.imageset/action_motion_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_motion_off.imageset/action_motion_off.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_motion_off.imageset/action_motion_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_motion_off.imageset/action_motion_off@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_motion_on.imageset/action_motion_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_motion_on.imageset/action_motion_on.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_motion_on.imageset/action_motion_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_motion_on.imageset/action_motion_on@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_next_video.imageset/action_next_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_next_video.imageset/action_next_video.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_next_video.imageset/action_next_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_next_video.imageset/action_next_video@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_player_pause.imageset/action_player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_player_pause.imageset/action_player_pause.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_player_pause.imageset/action_player_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_player_pause.imageset/action_player_pause@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_player_play.imageset/action_player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_player_play.imageset/action_player_play.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_player_play.imageset/action_player_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_player_play.imageset/action_player_play@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_link_grey.imageset/action_share_link_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_link_grey.imageset/action_share_link_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_link_grey.imageset/action_share_link_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_link_grey.imageset/action_share_link_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_moment_grey.imageset/action_share_moment_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_moment_grey.imageset/action_share_moment_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_moment_grey.imageset/action_share_moment_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_moment_grey.imageset/action_share_moment_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_qq_grey.imageset/action_share_qq_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_qq_grey.imageset/action_share_qq_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_qq_grey.imageset/action_share_qq_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_qq_grey.imageset/action_share_qq_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_qzone.imageset/action_share_qzone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_qzone.imageset/action_share_qzone@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_qzone_grey.imageset/action_share_qzone_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_qzone_grey.imageset/action_share_qzone_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_weibo_grey.imageset/action_share_weibo_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_weibo_grey.imageset/action_share_weibo_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_weibo_grey.imageset/action_share_weibo_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_weibo_grey.imageset/action_share_weibo_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_weico_grey.imageset/action_share_weico_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_weico_grey.imageset/action_share_weico_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_weixin_grey.imageset/action_share_weixin_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_weixin_grey.imageset/action_share_weixin_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_share_weixin_grey.imageset/action_share_weixin_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_share_weixin_grey.imageset/action_share_weixin_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zan_grey.imageset/action_zan_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zan_grey.imageset/action_zan_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zan_grey.imageset/action_zan_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zan_grey.imageset/action_zan_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zan_white.imageset/action_zan_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zan_white.imageset/action_zan_white.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zan_white.imageset/action_zan_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zan_white.imageset/action_zan_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zaned_grey.imageset/action_zaned_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zaned_grey.imageset/action_zaned_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zaned_grey.imageset/action_zaned_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zaned_grey.imageset/action_zaned_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zaned_white.imageset/action_zaned_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zaned_white.imageset/action_zaned_white.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/action_zaned_white.imageset/action_zaned_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/action_zaned_white.imageset/action_zaned_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/addd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "addd.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/addd.imageset/addd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/addd.imageset/addd.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_explore_card_end.imageset/background_explore_card_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/background_explore_card_end.imageset/background_explore_card_end.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_explore_card_share.imageset/background_explore_card_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/background_explore_card_share.imageset/background_explore_card_share.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_explore_default_blur.imageset/background_explore_default_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/background_explore_default_blur.imageset/background_explore_default_blur.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_irate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "background_irate@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_irate.imageset/background_irate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/background_irate.imageset/background_irate@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_pastdaily_badge.imageset/background_pastdaily_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/background_pastdaily_badge.imageset/background_pastdaily_badge@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/background_pastdaily_badge_gray.imageset/background_pastdaily_badge_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/background_pastdaily_badge_gray.imageset/background_pastdaily_badge_gray@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/badge_selected_header.imageset/badge_selected_header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/badge_selected_header.imageset/badge_selected_header@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/bar_ic_search.imageset/bar_ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/bar_ic_search.imageset/bar_ic_search.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/bar_ic_search.imageset/bar_ic_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/bar_ic_search.imageset/bar_ic_search@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/bar_ic_search_white.imageset/bar_ic_search_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/bar_ic_search_white.imageset/bar_ic_search_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/greyheart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "greyheart@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/greyheart.imageset/greyheart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/greyheart.imageset/greyheart@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "guide_arrow_down@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_down.imageset/guide_arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_arrow_down.imageset/guide_arrow_down@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "guide_arrow_left@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_left.imageset/guide_arrow_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_arrow_left.imageset/guide_arrow_left@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "guide_arrow_right@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_right.imageset/guide_arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_arrow_right.imageset/guide_arrow_right@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "guide_arrow_up@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_arrow_up.imageset/guide_arrow_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_arrow_up.imageset/guide_arrow_up@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_explore_next_page.imageset/guide_explore_next_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_explore_next_page.imageset/guide_explore_next_page.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_explore_next_page.imageset/guide_explore_next_page@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_explore_next_page.imageset/guide_explore_next_page@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_explore_previous_page.imageset/guide_explore_previous_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_explore_previous_page.imageset/guide_explore_previous_page.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_explore_previous_page.imageset/guide_explore_previous_page@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_explore_previous_page.imageset/guide_explore_previous_page@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_navbar_search.imageset/guide_navbar_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_navbar_search.imageset/guide_navbar_search.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_navbar_search.imageset/guide_navbar_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_navbar_search.imageset/guide_navbar_search@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_player_panorama.imageset/guide_player_panorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_player_panorama.imageset/guide_player_panorama.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/guide_player_panorama.imageset/guide_player_panorama@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/guide_player_panorama.imageset/guide_player_panorama@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_black.imageset/ic_accessory_arrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_black.imageset/ic_accessory_arrow_black.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_black.imageset/ic_accessory_arrow_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_black.imageset/ic_accessory_arrow_black@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_grey.imageset/ic_accessory_arrow_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_grey.imageset/ic_accessory_arrow_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_white.imageset/ic_accessory_arrow_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_accessory_arrow_white.imageset/ic_accessory_arrow_white@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_banner_arrow_up.imageset/ic_banner_arrow_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_banner_arrow_up.imageset/ic_banner_arrow_up@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_card_preview.imageset/ic_card_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_card_preview.imageset/ic_card_preview.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_card_preview.imageset/ic_card_preview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_card_preview.imageset/ic_card_preview@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_card_reload.imageset/ic_card_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_card_reload.imageset/ic_card_reload.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_card_reload.imageset/ic_card_reload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_card_reload.imageset/ic_card_reload@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_loading_error.imageset/ic_loading_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_loading_error.imageset/ic_loading_error.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_loading_error.imageset/ic_loading_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_loading_error.imageset/ic_loading_error@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_player_seek_backward.imageset/ic_player_seek_backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_player_seek_backward.imageset/ic_player_seek_backward.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_player_seek_backward.imageset/ic_player_seek_backward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_player_seek_backward.imageset/ic_player_seek_backward@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_player_seek_forward.imageset/ic_player_seek_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_player_seek_forward.imageset/ic_player_seek_forward.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_player_seek_forward.imageset/ic_player_seek_forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_player_seek_forward.imageset/ic_player_seek_forward@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_search_grey.imageset/ic_search_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_search_grey.imageset/ic_search_grey.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_search_grey.imageset/ic_search_grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_search_grey.imageset/ic_search_grey@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_slider_thumb.imageset/ic_slider_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_slider_thumb.imageset/ic_slider_thumb.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_slider_thumb.imageset/ic_slider_thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_slider_thumb.imageset/ic_slider_thumb@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_1.imageset/ic_tab_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_1.imageset/ic_tab_1@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_1_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_1_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_1_selected.imageset/ic_tab_1_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_1_selected.imageset/ic_tab_1_selected@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_2.imageset/ic_tab_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_2.imageset/ic_tab_2@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_2_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_2_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_2_selected.imageset/ic_tab_2_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_2_selected.imageset/ic_tab_2_selected@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_3@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_3.imageset/ic_tab_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_3.imageset/ic_tab_3@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_3_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_3_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_3_selected.imageset/ic_tab_3_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_3_selected.imageset/ic_tab_3_selected@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_4@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_4.imageset/ic_tab_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_4.imageset/ic_tab_4@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_4_red.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_4_red@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_4_red.imageset/ic_tab_4_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_4_red.imageset/ic_tab_4_red@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_4_selected.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_tab_4_selected@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_tab_4_selected.imageset/ic_tab_4_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_tab_4_selected.imageset/ic_tab_4_selected@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_close@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_close.imageset/ic_video_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_close.imageset/ic_video_close@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_comment@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_comment.imageset/ic_video_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_comment.imageset/ic_video_comment@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_detail_up_guide.imageset/ic_video_detail_up_guide@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_detail_up_guide.imageset/ic_video_detail_up_guide@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_dismiss.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_dismiss@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_dismiss.imageset/ic_video_dismiss@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_dismiss.imageset/ic_video_dismiss@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_download.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_download@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_download.imageset/ic_video_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_download.imageset/ic_video_download@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_download_retry.imageset/ic_video_download_retry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_download_retry.imageset/ic_video_download_retry@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_entry.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_entry@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_entry.imageset/ic_video_entry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_entry.imageset/ic_video_entry@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_like.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_like@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_like.imageset/ic_video_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_like.imageset/ic_video_like@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_liked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_liked@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_liked.imageset/ic_video_liked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_liked.imageset/ic_video_liked@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ic_video_share@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/ic_video_share.imageset/ic_video_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/ic_video_share.imageset/ic_video_share@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/icon_loading_eye_in.imageset/icon_loading_eye_in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/icon_loading_eye_in.imageset/icon_loading_eye_in@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/icon_loading_eye_in_white_big.imageset/icon_loading_eye_in_white_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/icon_loading_eye_in_white_big.imageset/icon_loading_eye_in_white_big@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/icon_loading_eye_out.imageset/icon_loading_eye_out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/icon_loading_eye_out.imageset/icon_loading_eye_out@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/icon_loading_eye_out_white_big.imageset/icon_loading_eye_out_white_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/icon_loading_eye_out_white_big.imageset/icon_loading_eye_out_white_big@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/icon_loading_video.imageset/icon_loading_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/icon_loading_video.imageset/icon_loading_video.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/icon_loading_video.imageset/icon_loading_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/icon_loading_video.imageset/icon_loading_video@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/nav_share.imageset/nav_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/nav_share.imageset/nav_share.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/nav_share.imageset/nav_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/nav_share.imageset/nav_share@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/s_1136_huajijiazu_huaji.imageset/s_1136_huajijiazu_huaji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/s_1136_huajijiazu_huaji.imageset/s_1136_huajijiazu_huaji.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/screenshot_frame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "screenshot_frame@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/screenshot_frame.imageset/screenshot_frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/screenshot_frame.imageset/screenshot_frame@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/screenshot_watermark.imageset/screenshot_watermark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/screenshot_watermark.imageset/screenshot_watermark@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/shadow1px.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shadow1px.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/shadow1px.imageset/shadow1px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/shadow1px.imageset/shadow1px.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/share_frame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "share_frame@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/share_frame.imageset/share_frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/share_frame.imageset/share_frame@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/share_frame_small.imageset/share_frame_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/share_frame_small.imageset/share_frame_small.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/share_watermark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "share_watermark@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/share_watermark.imageset/share_watermark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/share_watermark.imageset/share_watermark@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/sina_weibo.imageset/sina_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/sina_weibo.imageset/sina_weibo.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/sina_weibo.imageset/sina_weibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/sina_weibo.imageset/sina_weibo@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/skip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "skip@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/skip.imageset/skip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/skip.imageset/skip@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_Setting.imageset/tab_Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_Setting.imageset/tab_Setting.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_Setting.imageset/tab_Setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_Setting.imageset/tab_Setting@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_category.imageset/tab_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_category.imageset/tab_category.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_category.imageset/tab_category@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_category.imageset/tab_category@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_category_selected.imageset/tab_category_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_category_selected.imageset/tab_category_selected.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_category_selected.imageset/tab_category_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_category_selected.imageset/tab_category_selected@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_dailyselect.imageset/tab_dailyselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_dailyselect.imageset/tab_dailyselect.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_dailyselect.imageset/tab_dailyselect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_dailyselect.imageset/tab_dailyselect@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_download.imageset/tab_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_download.imageset/tab_download.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_download.imageset/tab_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_download.imageset/tab_download@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_liked.imageset/tab_liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_liked.imageset/tab_liked.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_liked.imageset/tab_liked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_liked.imageset/tab_liked@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_liked_selected.imageset/tab_liked_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_liked_selected.imageset/tab_liked_selected.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tab_liked_selected.imageset/tab_liked_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tab_liked_selected.imageset/tab_liked_selected@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tableView_arrow_icon.imageset/tableView_arrow_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tableView_arrow_icon.imageset/tableView_arrow_icon.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tableView_arrow_icon.imageset/tableView_arrow_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tableView_arrow_icon.imageset/tableView_arrow_icon@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/tableView_arrow_icon.imageset/tableView_arrow_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/tableView_arrow_icon.imageset/tableView_arrow_icon@3x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/wechat.imageset/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/wechat.imageset/wechat.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/wechat.imageset/wechat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/wechat.imageset/wechat@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/weixin_timeline.imageset/weixin_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/weixin_timeline.imageset/weixin_timeline.png -------------------------------------------------------------------------------- /OpenEyesDemo/Assets.xcassets/weixin_timeline.imageset/weixin_timeline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Assets.xcassets/weixin_timeline.imageset/weixin_timeline@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/FZLTXIHJW--GB1-0.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/FZLTXIHJW--GB1-0.TTF -------------------------------------------------------------------------------- /OpenEyesDemo/FZLTZCHJW--GB1-0.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/FZLTZCHJW--GB1-0.TTF -------------------------------------------------------------------------------- /OpenEyesDemo/FindDetailsCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- 1 | // 2 | // FindDetailsCollectionViewFlowLayout.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/12/2. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FindDetailsCollectionViewFlowLayout : UICollectionViewFlowLayout 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/FindDetailsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FindDetailsViewController.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/12/2. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FindDetailsViewController : UIViewController 12 | 13 | @property (nonatomic, assign) NSInteger ids; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /OpenEyesDemo/FindViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FindViewController.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/12/2. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FindViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/HomeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HomeViewController.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/25. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HomeViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/HyImages.h: -------------------------------------------------------------------------------- 1 | // 2 | // HyImages.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/29. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HyImages : UIImage 12 | 13 | @property (nonatomic, assign) NSInteger index; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /OpenEyesDemo/HyImages.m: -------------------------------------------------------------------------------- 1 | // 2 | // HyImages.m 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/29. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import "HyImages.h" 10 | 11 | @implementation HyImages 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/HyPlayVideoLayer.h: -------------------------------------------------------------------------------- 1 | // 2 | // HyPlayVideoLayer.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/30. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | @interface HyPlayVideoLayer : UIView 12 | @property (nonatomic,strong) AVPlayer * Player; 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/HyTableViewFooterView.h: -------------------------------------------------------------------------------- 1 | // 2 | // HyTableViewFooterView.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/26. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface HyTableViewFooterView : UIView 12 | @property (weak, nonatomic) IBOutlet UIImageView *outImageViwe; 13 | @property (weak, nonatomic) IBOutlet UIImageView *inImageView; 14 | + (instancetype) loadView; 15 | @end 16 | -------------------------------------------------------------------------------- /OpenEyesDemo/HytextGraduallyShowAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // HytextGraduallyShowAnimation.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/28. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface HytextGraduallyShowAnimation : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/Lobster 1.4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/Lobster 1.4.otf -------------------------------------------------------------------------------- /OpenEyesDemo/OpenEyesViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // OpenEyesViewController.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/12/2. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OpenEyesViewController : UITabBarController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/TabBarView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TabBarView.h 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/12/2. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TabBarView : UIView 12 | 13 | @property (nonatomic, strong) NSArray *viewControllers; 14 | @property (nonatomic, strong) UITabBarController *tabbarController; 15 | @end 16 | -------------------------------------------------------------------------------- /OpenEyesDemo/UIView+ScreensShot.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+ScreensShot.h 3 | // SaveImage 4 | // 5 | // Created by YouXianMing on 16/7/13. 6 | // Copyright © 2016年 YouXianMing. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIView (ScreensShot) 12 | 13 | /** 14 | * 无损截图 15 | * 16 | * This function may be called from any thread of your app. 17 | * 18 | * @return 返回生成的图片 19 | */ 20 | - (UIImage *)screenShot; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCDashLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCDashLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 3/25/15. 6 | // Copyright (c) 2015 overboming. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCDashLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCDuangLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCDuangLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/28/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCDuangLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCFallLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCFallLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/28/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCFallLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCFlyinLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCFlyinLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/28/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCFlyinLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCFocusLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCFocusLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/28/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCFocusLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCRevealLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCRevealLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 3/2/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCRevealLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCShapeshiftLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCShapeshiftLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/26/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCShapeshiftLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCSpinLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCSpinLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 3/17/15. 6 | // Copyright (c) 2015 overboming. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCSpinLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCThrownLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCTurnAroundLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/26/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCThrownLabel : ZCAnimatedLabel 12 | 13 | 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZCAnimatedLabel/ZCTransparencyLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZCTransparencyLabel.h 3 | // ZCAnimatedLabel 4 | // 5 | // Created by Chen Zhang on 2/28/15. 6 | // Copyright (c) 2015 somewhere. All rights reserved. 7 | // 8 | 9 | #import "ZCAnimatedLabel.h" 10 | 11 | @interface ZCTransparencyLabel : ZCAnimatedLabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZYBannerView/ZYBannerCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZYBannerCell.h 3 | // 4 | // Created by 张志延 on 15/10/17. 5 | // Copyright (c) 2015年 tongbu. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface ZYBannerCell : UICollectionViewCell 11 | 12 | @property (nonatomic, strong) UIView *itemView; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /OpenEyesDemo/ZYBannerView/ZYBannerView.bundle/banner_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/OpenEyesDemo/ZYBannerView/ZYBannerView.bundle/banner_arrow@2x.png -------------------------------------------------------------------------------- /OpenEyesDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // OpenEyesDemo 4 | // 5 | // Created by 胡毅 on 16/11/25. 6 | // Copyright © 2016年 Hy. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /OpenEyesDemo/model/DataModels.h: -------------------------------------------------------------------------------- 1 | // 2 | // DataModels.h 3 | // 4 | // Created by 毅 胡 on 16/12/2 5 | // Copyright (c) 2016 暂无. All rights reserved. 6 | // 7 | 8 | #import "BaseClass.h" #import "Label.h" #import "Provider.h" #import "PlayInfo.h" #import "Author.h" #import "ItemList.h" #import "Footer.h" #import "Tags.h" #import "Consumption.h" #import "Header.h" #import "SectionList.h" #import "Data.h" #import "Cover.h" #import "WebUrl.h" #import "Follow.h" -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, ‘7.0‘ 2 | 3 | target "OpenEyesDemo" do 4 | pod 'AFNetworking' 5 | pod ‘YYKit’ 6 | pod 'MD360Player4iOS', '~> 1.0.0' 7 | pod 'VIMVideoPlayer', '~> 6.0.1' 8 | end 9 | -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/GLUtil.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/GLUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MD360Director.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Director.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MD360Program.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Program.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MD360Renderer.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Renderer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MD360Texture.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Texture.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDAbsObject3D.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDAbsObject3D.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDDisplayStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDDisplayStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDGLKViewController.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDGLKViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDGLRendererDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDGLRendererDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDInteractiveStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDInteractiveStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDModeStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDModeStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDObject3DHelper.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDObject3DHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDProjectionStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDProjectionStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDTouchHelper.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDTouchHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDVRHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVRHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDVRLibrary.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVRLibrary.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDVideoDataAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVideoDataAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MD360Player4iOS/MDVideoDataAdatperAVPlayerImpl.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVideoDataAdatperAVPlayerImpl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/VIMVideoPlayer/VIMVideoPlayer.h: -------------------------------------------------------------------------------- 1 | ../../../VIMVideoPlayer/VIMVideoPlayer-Source/VIMVideoPlayer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/VIMVideoPlayer/VIMVideoPlayerView.h: -------------------------------------------------------------------------------- 1 | ../../../VIMVideoPlayer/VIMVideoPlayer-Source/VIMVideoPlayerView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/CALayer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/MKAnnotationView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSArray+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSData+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSData+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSDate+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSDictionary+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSKeyedUnarchiver+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSNotificationCenter+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSNumber+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYAddForARC.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYAddForKVO.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSObject+YYModel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/NSObject+YYModel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSString+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSString+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSThread+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/NSTimer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIApplication+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIBarButtonItem+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIBezierPath+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIColor+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIControl+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIDevice+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIFont+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIImage+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIImageView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIScreen+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIScrollView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UITableView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UITextField+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYAsyncLayer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYAsyncLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYCGUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/YYCGUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYClassInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/YYClassInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYDiskCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYDispatchQueuePool.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYDispatchQueuePool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYFileHash.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYFileHash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYFrameImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYFrameImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKVStorage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYKVStorage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKit.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/YYKit.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYKitMacro.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/YYKitMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYLabel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYMemoryCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYReachability.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYReachability.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYSentinel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYSentinel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextArchiver.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextArchiver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextContainerView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextDebugOption.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextEffectWindow.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextInput.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextInput.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextLayout.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextLine.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextMagnifier.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextParser.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextParser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextRunDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextSelectionView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTextView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYThreadSafeArray.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYThreadSafeDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTimer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTimer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYWeakProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/YYWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/YYKit/_YYWebImageSetter.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/_YYWebImageSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/GLUtil.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/GLUtil.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MD360Director.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Director.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MD360Program.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Program.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MD360Renderer.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Renderer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MD360Texture.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MD360Texture.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDAbsObject3D.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDAbsObject3D.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDDisplayStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDDisplayStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDGLKViewController.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDGLKViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDGLRendererDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDGLRendererDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDInteractiveStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDInteractiveStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDModeStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDModeStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDObject3DHelper.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDObject3DHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDProjectionStrategy.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDProjectionStrategy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDTouchHelper.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDTouchHelper.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDVRHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVRHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDVRLibrary.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVRLibrary.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDVideoDataAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVideoDataAdapter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MD360Player4iOS/MDVideoDataAdatperAVPlayerImpl.h: -------------------------------------------------------------------------------- 1 | ../../../MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVideoDataAdatperAVPlayerImpl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/VIMVideoPlayer/VIMVideoPlayer.h: -------------------------------------------------------------------------------- 1 | ../../../VIMVideoPlayer/VIMVideoPlayer-Source/VIMVideoPlayer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/VIMVideoPlayer/VIMVideoPlayerView.h: -------------------------------------------------------------------------------- 1 | ../../../VIMVideoPlayer/VIMVideoPlayer-Source/VIMVideoPlayerView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/CALayer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/CALayer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/MKAnnotationView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/MKAnnotationView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSArray+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSArray+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSData+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSData+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSDate+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDate+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSDictionary+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSDictionary+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSKeyedUnarchiver+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSKeyedUnarchiver+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSNotificationCenter+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNotificationCenter+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSNumber+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSNumber+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYAddForARC.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForARC.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYAddForKVO.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSObject+YYAddForKVO.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSObject+YYModel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/NSObject+YYModel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSString+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSString+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSThread+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSThread+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/NSTimer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Foundation/NSTimer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIApplication+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIApplication+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIBarButtonItem+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBarButtonItem+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIBezierPath+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIBezierPath+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIColor+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIColor+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIControl+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIControl+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIDevice+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIDevice+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIFont+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIFont+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIGestureRecognizer+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIGestureRecognizer+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIImage+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIImage+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIImageView+YYWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/UIImageView+YYWebImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIScreen+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScreen+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIScrollView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIScrollView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UITableView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITableView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UITextField+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UITextField+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/UIKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/config.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/config.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/decode.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/decode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/demux.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/demux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/encode.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/encode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/extras.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/extras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/format_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/format_constants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/mux.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/mux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/mux_types.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/mux_types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/WebP/types.h: -------------------------------------------------------------------------------- 1 | ../../../../YYKit/Vendor/WebP.framework/Headers/types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYAsyncLayer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYAsyncLayer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYCGUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/Quartz/YYCGUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYClassInfo.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Model/YYClassInfo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYDiskCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYDispatchQueuePool.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYDispatchQueuePool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYFileHash.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYFileHash.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYFrameImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYFrameImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYGestureRecognizer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYImageCoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKVStorage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYKVStorage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKit.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/YYKit.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYKitMacro.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Base/YYKitMacro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYLabel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Cache/YYMemoryCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYReachability.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYReachability.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYSentinel.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYSentinel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextArchiver.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextArchiver.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextContainerView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextDebugOption.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextEffectWindow.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextInput.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextInput.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextLayout.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextLine.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextLine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextMagnifier.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextParser.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextParser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextRunDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextSelectionView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/String/YYTextUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTextView.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Text/YYTextView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYThreadSafeArray.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeArray.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYThreadSafeDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYThreadSafeDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTimer.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTimer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYTransaction.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Utility/YYWeakProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/YYWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/YYWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/YYKit/_YYWebImageSetter.h: -------------------------------------------------------------------------------- 1 | ../../../YYKit/YYKit/Image/Categories/_YYWebImageSetter.h -------------------------------------------------------------------------------- /Pods/MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDDisplayStrategy.h: -------------------------------------------------------------------------------- 1 | // 2 | // MDDisplayStrategy.h 3 | // MD360Player4IOS 4 | // 5 | // Created by ashqal on 16/4/12. 6 | // Copyright © 2016年 ashqal. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MDModeStrategy.h" 11 | #import 12 | 13 | @interface MDDisplayStrategyManager : MDModeManager 14 | - (int) getVisibleSize; 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDObject3DHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // MDObject3DHelper.h 3 | // MDVRLibrary 4 | // 5 | // Created by ashqal on 16/7/2. 6 | // Copyright © 2016年 asha. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MDAbsObject3D.h" 11 | 12 | @interface MDObject3DHelper : NSObject 13 | + (void) loadObj:(MDAbsObject3D*)obj; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDObject3DHelper.m: -------------------------------------------------------------------------------- 1 | // 2 | // MDObject3DHelper.m 3 | // MDVRLibrary 4 | // 5 | // Created by ashqal on 16/7/2. 6 | // Copyright © 2016年 asha. All rights reserved. 7 | // 8 | 9 | #import "MDObject3DHelper.h" 10 | 11 | 12 | @implementation MDObject3DHelper 13 | + (void) loadObj:(MDAbsObject3D*)obj{ 14 | [obj executeLoad]; 15 | [obj markChanged]; 16 | } 17 | @end 18 | -------------------------------------------------------------------------------- /Pods/MD360Player4iOS/MDVRLibrary/MDVRLibrary/MDVideoDataAdapter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MDVideoDataAdapter.h 3 | // MD360Player4IOS 4 | // 5 | // Created by ashqal on 16/4/9. 6 | // Copyright © 2016年 ashqal. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @protocol MDVideoDataAdapter 13 | - (CVPixelBufferRef)copyPixelBuffer; 14 | @end -------------------------------------------------------------------------------- /Pods/MD360Player4iOS/MDVRLibrary/MDVRLibrary/vrlibraw.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Pods/MD360Player4iOS/MDVRLibrary/MDVRLibrary/vrlibraw.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MD360Player4iOS/MD360Player4iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MD360Player4iOS : NSObject 3 | @end 4 | @implementation PodsDummy_MD360Player4iOS 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MD360Player4iOS/MD360Player4iOS-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-OpenEyesDemo/Pods-OpenEyesDemo-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_OpenEyesDemo : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_OpenEyesDemo 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/VIMVideoPlayer/VIMVideoPlayer-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_VIMVideoPlayer : NSObject 3 | @end 4 | @implementation PodsDummy_VIMVideoPlayer 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/VIMVideoPlayer/VIMVideoPlayer-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_YYKit : NSObject 3 | @end 4 | @implementation PodsDummy_YYKit 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/WebP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Pods/YYKit/Vendor/WebP.framework/WebP -------------------------------------------------------------------------------- /Resources/开眼-下拉刷新.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/开眼-下拉刷新.gif -------------------------------------------------------------------------------- /Resources/开眼-发现.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/开眼-发现.gif -------------------------------------------------------------------------------- /Resources/开眼-发现详情.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/开眼-发现详情.gif -------------------------------------------------------------------------------- /Resources/开眼-视频详情.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/开眼-视频详情.gif -------------------------------------------------------------------------------- /Resources/开眼-转场动画.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/开眼-转场动画.gif -------------------------------------------------------------------------------- /Resources/开眼-载入MOV.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/开眼-载入MOV.gif -------------------------------------------------------------------------------- /Resources/视频详情-更多.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwdc14yh/OpenEyesDemo/47031d26d4cc13ff43071351674256ddda909b05/Resources/视频详情-更多.gif --------------------------------------------------------------------------------