├── .DS_Store ├── README.md ├── WSLAPP.xcodeproj ├── .DS_Store ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── qianfeng.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── wangshuanglong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── yigong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── qianfeng.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── WSLAPP.xcscheme │ │ └── xcschememanagement.plist │ ├── wangshuanglong.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── WSLAPP.xcscheme │ │ └── xcschememanagement.plist │ └── yigong.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WSLAPP.xcscheme │ └── xcschememanagement.plist ├── WSLAPP ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── Basics │ ├── .DS_Store │ ├── ADView.h │ ├── ADView.m │ ├── MyTabBarController.h │ ├── MyTabBarController.m │ ├── wslGuide1ViewController.h │ ├── wslGuide1ViewController.m │ ├── wslNavigationController.h │ ├── wslNavigationController.m │ ├── wslRootViewController.h │ ├── wslRootViewController.m │ ├── wslVideoPlayerView.h │ └── wslVideoPlayerView.m ├── Drawing │ ├── Controllers │ │ ├── wsldrawViewController.h │ │ └── wsldrawViewController.m │ └── Views │ │ ├── drawView.h │ │ └── drawView.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── 1-1.png │ │ ├── 1-2.png │ │ ├── 1-3.png │ │ ├── 1-4.png │ │ ├── 1.png │ │ ├── Contents.json │ │ └── u=1868964496,3555553584&fm=21&gp=0.jpg.png ├── Info.plist ├── Libraries │ ├── .DS_Store │ ├── AFNetworking │ │ └── SDWebImage │ │ │ ├── MKAnnotationView+WebCache.h │ │ │ ├── MKAnnotationView+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDecoder.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+WebP.h │ │ │ ├── UIImage+WebP.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ ├── AFNetworkingDownload │ │ └── .DS_Store │ ├── JGProgressHUD │ │ ├── .DS_Store │ │ ├── JGProgressHUD Resources.bundle │ │ │ ├── jg_hud_error.png │ │ │ ├── jg_hud_error@2x.png │ │ │ ├── jg_hud_error@3x.png │ │ │ ├── jg_hud_success.png │ │ │ ├── jg_hud_success@2x.png │ │ │ └── jg_hud_success@3x.png │ │ ├── JGProgressHUD-Defines.h │ │ ├── JGProgressHUD.h │ │ ├── JGProgressHUD.m │ │ ├── JGProgressHUDAnimation.h │ │ ├── JGProgressHUDAnimation.m │ │ ├── JGProgressHUDErrorIndicatorView.h │ │ ├── JGProgressHUDErrorIndicatorView.m │ │ ├── JGProgressHUDFadeAnimation.h │ │ ├── JGProgressHUDFadeAnimation.m │ │ ├── JGProgressHUDFadeZoomAnimation.h │ │ ├── JGProgressHUDFadeZoomAnimation.m │ │ ├── JGProgressHUDIndeterminateIndicatorView.h │ │ ├── JGProgressHUDIndeterminateIndicatorView.m │ │ ├── JGProgressHUDIndicatorView.h │ │ ├── JGProgressHUDIndicatorView.m │ │ ├── JGProgressHUDPieIndicatorView.h │ │ ├── JGProgressHUDPieIndicatorView.m │ │ ├── JGProgressHUDRingIndicatorView.h │ │ ├── JGProgressHUDRingIndicatorView.m │ │ ├── JGProgressHUDSuccessIndicatorView.h │ │ └── JGProgressHUDSuccessIndicatorView.m │ ├── SVPullToRefresh-master │ │ └── Demo │ │ │ ├── .DS_Store │ │ │ └── SVPullToRefreshDemo.xcodeproj │ │ │ └── project.xcworkspace │ │ │ └── xcuserdata │ │ │ └── zhangpeng.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── SVPullToRefresh │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperation.m │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPRequestOperationManager.m │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLConnectionOperation.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── SVPullToRefresh.h │ │ ├── UIScrollView+SVInfiniteScrolling.h │ │ ├── UIScrollView+SVInfiniteScrolling.m │ │ ├── UIScrollView+SVPullToRefresh.h │ │ └── UIScrollView+SVPullToRefresh.m │ ├── TencentOpenAPI │ │ └── .DS_Store │ ├── UMSocial_Sdk_4.2.3 │ │ ├── .DS_Store │ │ ├── Header │ │ │ ├── .DS_Store │ │ │ ├── UMSocial.h │ │ │ ├── UMSocialAccountManager.h │ │ │ ├── UMSocialBar.h │ │ │ ├── UMSocialConfig.h │ │ │ ├── UMSocialControllerService.h │ │ │ ├── UMSocialControllerServiceComment.h │ │ │ ├── UMSocialData.h │ │ │ ├── UMSocialDataService.h │ │ │ ├── UMSocialSnsData.h │ │ │ ├── UMSocialSnsPlatformManager.h │ │ │ └── UMSocialSnsService.h │ │ ├── SocialSDKXib │ │ │ ├── .DS_Store │ │ │ ├── UMSCommentDetailController.xib │ │ │ ├── UMSCommentInputController.xib │ │ │ ├── UMSCommentInputControlleriPad.xib │ │ │ ├── UMSLoginViewController.xib │ │ │ ├── UMSShareListController.xib │ │ │ ├── UMShareEditViewController.xib │ │ │ ├── UMShareEditViewControlleriPad.xib │ │ │ └── UMSnsAccountViewController.xib │ │ ├── UMSocialSDKResourcesNew.bundle │ │ │ ├── .DS_Store │ │ │ ├── Buttons │ │ │ │ ├── UMS_Check.png │ │ │ │ ├── UMS_Check@2x.png │ │ │ │ ├── UMS_No_Location.png │ │ │ │ ├── UMS_No_Location@2x.png │ │ │ │ ├── UMS_User-Avatar-Placeholder@2x.png │ │ │ │ ├── UMS_User_profile_default@2x.png │ │ │ │ ├── UMS_account_login@2x.png │ │ │ │ ├── UMS_add_friend_off.png │ │ │ │ ├── UMS_add_friend_off@2x.png │ │ │ │ ├── UMS_add_friend_on.png │ │ │ │ ├── UMS_add_friend_on@2x.png │ │ │ │ ├── UMS_comment_input@2x.png │ │ │ │ ├── UMS_comment_view_cell.png │ │ │ │ ├── UMS_comment_view_cell_white@2x.png │ │ │ │ ├── UMS_delete_image_button_normal.png │ │ │ │ ├── UMS_delete_image_button_normal@2x.png │ │ │ │ ├── UMS_find@2x.png │ │ │ │ ├── UMS_follow_off@2x.png │ │ │ │ ├── UMS_follow_on@2x.png │ │ │ │ ├── UMS_nav_bar_bg_white@2x.png │ │ │ │ ├── UMS_nav_button_back.png │ │ │ │ ├── UMS_nav_button_back@2x.png │ │ │ │ ├── UMS_nav_button_close.png │ │ │ │ ├── UMS_nav_button_close@2x.png │ │ │ │ ├── UMS_nav_button_refresh.png │ │ │ │ ├── UMS_nav_button_refresh@2x.png │ │ │ │ ├── UMS_nav_button_send.png │ │ │ │ ├── UMS_nav_button_send@2x.png │ │ │ │ ├── UMS_oauth_off.png │ │ │ │ ├── UMS_oauth_off@2x.png │ │ │ │ ├── UMS_oauth_on.png │ │ │ │ ├── UMS_oauth_on@2x.png │ │ │ │ ├── UMS_place_map.png │ │ │ │ ├── UMS_place_map@2x.png │ │ │ │ ├── UMS_place_off.png │ │ │ │ ├── UMS_place_off@2x.png │ │ │ │ ├── UMS_place_tap.png │ │ │ │ ├── UMS_place_tap@2x.png │ │ │ │ ├── UMS_shake__share_button@2x.png │ │ │ │ ├── UMS_shake_close.png │ │ │ │ ├── UMS_shake_close@2x.png │ │ │ │ ├── UMS_shake_close_tap.png │ │ │ │ ├── UMS_shake_close_tap@2x.png │ │ │ │ ├── UMS_share_change_account.png │ │ │ │ ├── UMS_share_change_account@2x.png │ │ │ │ ├── UMS_share_change_account_bg@2x.png │ │ │ │ ├── UMS_share_change_account_tap.png │ │ │ │ ├── UMS_share_change_account_tap@2x.png │ │ │ │ ├── UMS_share_change_to_account@2x.png │ │ │ │ ├── UMS_share_change_to_account_tap@2x.png │ │ │ │ ├── UMS_share_oauth@2x.png │ │ │ │ ├── UMS_umeng_share_at.png │ │ │ │ ├── UMS_umeng_share_at@2x.png │ │ │ │ ├── UMS_umeng_share_atSel.png │ │ │ │ ├── UMS_umeng_share_atSel@2x.png │ │ │ │ ├── UMS_umeng_share_at_tap.png │ │ │ │ ├── UMS_umeng_share_toolbarBg.png │ │ │ │ ├── UMS_umeng_share_toolbarBg@2x.png │ │ │ │ ├── UMS_url_image.png │ │ │ │ ├── UMS_url_image@2x.png │ │ │ │ ├── UMS_url_music.png │ │ │ │ ├── UMS_url_music@2x.png │ │ │ │ ├── UMS_url_video.png │ │ │ │ └── UMS_url_video@2x.png │ │ │ ├── EGO │ │ │ │ ├── .DS_Store │ │ │ │ ├── blackArrow.png │ │ │ │ ├── blackArrow@2x.png │ │ │ │ ├── blueArrow.png │ │ │ │ ├── blueArrow@2x.png │ │ │ │ ├── grayArrow.png │ │ │ │ ├── grayArrow@2x.png │ │ │ │ ├── whiteArrow.png │ │ │ │ └── whiteArrow@2x.png │ │ │ ├── OtherTheme │ │ │ │ ├── UMS_actionsheet_panel@2x.png │ │ │ │ ├── UMS_nav_back_button_normal.png │ │ │ │ ├── UMS_nav_back_button_normal@2x.png │ │ │ │ ├── UMS_nav_back_button_tap.png │ │ │ │ ├── UMS_nav_back_button_tap@2x.png │ │ │ │ ├── UMS_nav_bar_bg_black.png │ │ │ │ ├── UMS_nav_bar_bg_black@2x.png │ │ │ │ ├── UMS_nav_button_normal.png │ │ │ │ ├── UMS_nav_button_normal@2x.png │ │ │ │ ├── UMS_nav_button_tap.png │ │ │ │ └── UMS_nav_button_tap@2x.png │ │ │ ├── SnsPlatform │ │ │ │ ├── UMS_douban_icon.png │ │ │ │ ├── UMS_douban_icon@2x.png │ │ │ │ ├── UMS_douban_off.png │ │ │ │ ├── UMS_douban_off@2x.png │ │ │ │ ├── UMS_douban_on.png │ │ │ │ ├── UMS_douban_on@2x.png │ │ │ │ ├── UMS_email_icon.png │ │ │ │ ├── UMS_email_icon@2x.png │ │ │ │ ├── UMS_email_off.png │ │ │ │ ├── UMS_email_off@2x.png │ │ │ │ ├── UMS_email_on@2x.png │ │ │ │ ├── UMS_facebook_icon.png │ │ │ │ ├── UMS_facebook_icon@2x.png │ │ │ │ ├── UMS_facebook_off.png │ │ │ │ ├── UMS_facebook_off@2x.png │ │ │ │ ├── UMS_facebook_on.png │ │ │ │ ├── UMS_facebook_on@2x.png │ │ │ │ ├── UMS_instagram.png │ │ │ │ ├── UMS_instagram@2x.png │ │ │ │ ├── UMS_laiwang_session@2x.png │ │ │ │ ├── UMS_laiwang_timeline@2x.png │ │ │ │ ├── UMS_line_icon@2x.png │ │ │ │ ├── UMS_qq_icon.png │ │ │ │ ├── UMS_qq_icon@2x.png │ │ │ │ ├── UMS_qq_off.png │ │ │ │ ├── UMS_qq_off@2x.png │ │ │ │ ├── UMS_qq_on.png │ │ │ │ ├── UMS_qq_on@2x.png │ │ │ │ ├── UMS_qzone_icon.png │ │ │ │ ├── UMS_qzone_icon@2x.png │ │ │ │ ├── UMS_qzone_off.png │ │ │ │ ├── UMS_qzone_off@2x.png │ │ │ │ ├── UMS_qzone_on.png │ │ │ │ ├── UMS_qzone_on@2x.png │ │ │ │ ├── UMS_renren_icon.png │ │ │ │ ├── UMS_renren_icon@2x.png │ │ │ │ ├── UMS_renren_off.png │ │ │ │ ├── UMS_renren_off@2x.png │ │ │ │ ├── UMS_renren_on.png │ │ │ │ ├── UMS_renren_on@2x.png │ │ │ │ ├── UMS_sina_icon.png │ │ │ │ ├── UMS_sina_icon@2x.png │ │ │ │ ├── UMS_sina_off.png │ │ │ │ ├── UMS_sina_off@2x.png │ │ │ │ ├── UMS_sina_on.png │ │ │ │ ├── UMS_sina_on@2x.png │ │ │ │ ├── UMS_sms_icon.png │ │ │ │ ├── UMS_sms_icon@2x.png │ │ │ │ ├── UMS_sms_off.png │ │ │ │ ├── UMS_sms_off@2x.png │ │ │ │ ├── UMS_sms_on@2x.png │ │ │ │ ├── UMS_tencent_icon.png │ │ │ │ ├── UMS_tencent_icon@2x.png │ │ │ │ ├── UMS_tencent_off.png │ │ │ │ ├── UMS_tencent_off@2x.png │ │ │ │ ├── UMS_tencent_on.png │ │ │ │ ├── UMS_tencent_on@2x.png │ │ │ │ ├── UMS_tumblr_icon@2x.png │ │ │ │ ├── UMS_twitter_icon.png │ │ │ │ ├── UMS_twitter_icon@2x.png │ │ │ │ ├── UMS_twitter_off.png │ │ │ │ ├── UMS_twitter_off@2x.png │ │ │ │ ├── UMS_twitter_on.png │ │ │ │ ├── UMS_twitter_on@2x.png │ │ │ │ ├── UMS_wechat_favorite_icon.png │ │ │ │ ├── UMS_wechat_favorite_icon@2x.png │ │ │ │ ├── UMS_wechat_icon.png │ │ │ │ ├── UMS_wechat_icon@2x.png │ │ │ │ ├── UMS_wechat_off.png │ │ │ │ ├── UMS_wechat_off@2x.png │ │ │ │ ├── UMS_wechat_on@2x.png │ │ │ │ ├── UMS_wechat_session_icon.png │ │ │ │ ├── UMS_wechat_session_icon@2x.png │ │ │ │ ├── UMS_wechat_timeline_icon.png │ │ │ │ ├── UMS_wechat_timeline_icon@2x.png │ │ │ │ ├── UMS_wechat_timeline_off.png │ │ │ │ ├── UMS_wechat_timeline_off@2x.png │ │ │ │ ├── UMS_wechat_timeline_on.png │ │ │ │ ├── UMS_wechat_timeline_on@2x.png │ │ │ │ ├── UMS_whatsapp_icon@2x.png │ │ │ │ ├── UMS_yixin_session@2x.png │ │ │ │ └── UMS_yixin_timeline@2x.png │ │ │ ├── SocialSDKBar │ │ │ │ ├── .DS_Store │ │ │ │ ├── UMS_account_normal_white.png │ │ │ │ ├── UMS_account_normal_white@2x.png │ │ │ │ ├── UMS_account_tap_white.png │ │ │ │ ├── UMS_account_tap_white@2x.png │ │ │ │ ├── UMS_comment_normal_white.png │ │ │ │ ├── UMS_comment_normal_white@2x.png │ │ │ │ ├── UMS_comment_tap_white.png │ │ │ │ ├── UMS_comment_tap_white@2x.png │ │ │ │ ├── UMS_like_off_white.png │ │ │ │ ├── UMS_like_off_white@2x.png │ │ │ │ ├── UMS_like_on_white.png │ │ │ │ ├── UMS_like_on_white@2x.png │ │ │ │ ├── UMS_share_normal_white.png │ │ │ │ ├── UMS_share_normal_white@2x.png │ │ │ │ ├── UMS_share_tap_white.png │ │ │ │ └── UMS_share_tap_white@2x.png │ │ │ └── Sound │ │ │ │ └── shake_sound.mp3 │ │ ├── en.lproj │ │ │ ├── .DS_Store │ │ │ └── UMSocialLocalizable.strings │ │ ├── libUMSocial_Sdk_4.2.3.a │ │ └── zh-Hans.lproj │ │ │ └── UMSocialLocalizable.strings │ ├── UMSocial_Sdk_Extra_Frameworks │ │ ├── .DS_Store │ │ ├── TencentOpenAPI │ │ │ ├── .DS_Store │ │ │ ├── TencentOpenAPI.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── QQApiInterface.h │ │ │ │ │ ├── QQApiInterfaceObject.h │ │ │ │ │ ├── TencentApiInterface.h │ │ │ │ │ ├── TencentMessageObject.h │ │ │ │ │ ├── TencentOAuth.h │ │ │ │ │ ├── TencentOAuthObject.h │ │ │ │ │ ├── WeiBoAPI.h │ │ │ │ │ ├── WeiyunAPI.h │ │ │ │ │ └── sdkdef.h │ │ │ │ └── TencentOpenAPI │ │ │ ├── TencentOpenApi_IOS_Bundle.bundle │ │ │ │ ├── error.png │ │ │ │ ├── local.html │ │ │ │ ├── qqicon.png │ │ │ │ └── success.png │ │ │ ├── UMSocialQQHandler.h │ │ │ └── libSocialQQ.a │ │ └── Wechat │ │ │ ├── UMSocialWechatHandler.h │ │ │ ├── WXApi.h │ │ │ ├── WXApiObject.h │ │ │ ├── libSocialWechat.a │ │ │ └── libWeChatSDK.a │ ├── URLRequest │ │ ├── .DS_Store │ │ ├── NSString+Hashing.h │ │ ├── NSString+Hashing.m │ │ ├── QFRequestManager.h │ │ ├── QFRequestManager.m │ │ ├── QFURLRequest.h │ │ └── QFURLRequest.m │ └── libqrencode │ │ ├── .DS_Store │ │ ├── QRCodeGenerator.h │ │ ├── QRCodeGenerator.m │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── mask.c │ │ ├── mask.h │ │ ├── qrencode.c │ │ ├── qrencode.h │ │ ├── qrinput.c │ │ ├── qrinput.h │ │ ├── qrspec.c │ │ ├── qrspec.h │ │ ├── rscode.c │ │ ├── rscode.h │ │ ├── split.c │ │ └── split.h ├── Map │ ├── Controllers │ │ ├── wslMapViewController.h │ │ └── wslMapViewController.m │ └── Views │ │ ├── wslImageAnnotation.h │ │ └── wslImageAnnotation.m ├── More │ ├── Basics │ │ ├── wslMoreViewController.h │ │ └── wslMoreViewController.m │ └── Controllers │ │ ├── my2WeiMaViewController.h │ │ ├── my2WeiMaViewController.m │ │ ├── my2WeiMaViewController.xib │ │ ├── saoViewController.h │ │ ├── saoViewController.m │ │ ├── timeViewController.h │ │ ├── timeViewController.m │ │ └── timeViewController.xib ├── Resources │ ├── .DS_Store │ ├── NewsResource │ │ └── eye.png │ ├── appIcon.png │ ├── button-cross.png │ ├── duihao.jpg │ ├── giudImage │ │ ├── guid1.png │ │ ├── guid2.png │ │ ├── guid3.png │ │ └── guid4.png │ ├── location@2x.png │ ├── mingren.png │ ├── moreHead.png │ ├── songImage │ │ ├── .DS_Store │ │ ├── aboveMusic.png │ │ ├── backgroundImage5.jpg │ │ ├── circleClose.png │ │ ├── circleOpen.png │ │ ├── cuowu.png │ │ ├── head.png │ │ ├── menu.png │ │ ├── nextMusic.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── randomClose.png │ │ ├── randomOpen.png │ │ ├── sliderThumb_small.png │ │ └── soundSlider.png │ └── wallpapersResouce │ │ ├── autumn.mp4 │ │ ├── light.mp4 │ │ ├── night.mp4 │ │ ├── search.png │ │ ├── spring.mp4 │ │ ├── summer.mp4 │ │ ├── winter.mp4 │ │ ├── xiazai.png │ │ ├── zan.png │ │ ├── zou.mp4 │ │ └── 喜欢.png ├── Songplayer │ ├── Basics │ │ ├── downloadShareViewController.h │ │ ├── downloadShareViewController.m │ │ ├── songPlayVCManager.h │ │ └── songPlayVCManager.m │ ├── Controllers │ │ ├── downloadManagerViewController.h │ │ ├── downloadManagerViewController.m │ │ ├── songPlayViewController.h │ │ ├── songPlayViewController.m │ │ ├── wslSongMainViewController.h │ │ └── wslSongMainViewController.m │ ├── Models │ │ ├── SongModel.h │ │ ├── SongModel.m │ │ ├── geDanModel.h │ │ ├── geDanModel.m │ │ ├── haiBaoModel.h │ │ └── haiBaoModel.m │ └── Views │ │ ├── .DS_Store │ │ ├── CustomCollectionViewCell.h │ │ ├── CustomCollectionViewCell.m │ │ ├── CustomCollectionViewCell.xib │ │ ├── downloadTableViewCell.h │ │ ├── downloadTableViewCell.m │ │ ├── downloadTableViewCell.xib │ │ ├── imageScrView.h │ │ ├── imageScrView.m │ │ ├── wslAVPlayerManager.h │ │ ├── wslAVPlayerManager.m │ │ ├── wslAnalyzer.h │ │ ├── wslAnalyzer.m │ │ ├── wslLrcEach.h │ │ └── wslLrcEach.m ├── WSLAPP.entitlements ├── main.m ├── screen.jpeg ├── wallpaper │ ├── .DS_Store │ ├── Basics │ │ ├── UIImage+ZJWallPaper.h │ │ └── UIImage+ZJWallPaper.m │ ├── Controllers │ │ ├── wslCategoryDetailViewController.h │ │ ├── wslCategoryDetailViewController.m │ │ ├── wslCategoryViewController.h │ │ ├── wslCategoryViewController.m │ │ ├── wslHotViewController.h │ │ ├── wslHotViewController.m │ │ ├── wslNewViewController.h │ │ ├── wslNewViewController.m │ │ ├── wslPicDetailViewController.h │ │ ├── wslPicDetailViewController.m │ │ ├── wslPicSearchViewController.h │ │ ├── wslPicSearchViewController.m │ │ ├── wslRingsMoreViewController.h │ │ ├── wslRingsMoreViewController.m │ │ ├── wslpicMoreViewController.h │ │ ├── wslpicMoreViewController.m │ │ ├── wslwallpaperViewController.h │ │ └── wslwallpaperViewController.m │ ├── Models │ │ ├── picDetailModel.h │ │ ├── picDetailModel.m │ │ ├── pictureModel.h │ │ ├── pictureModel.m │ │ ├── ringModel.h │ │ └── ringModel.m │ └── Views │ │ ├── wslCommentTableViewCell.h │ │ ├── wslCommentTableViewCell.m │ │ ├── wslCommentTableViewCell.xib │ │ ├── wslCustomCollectionViewCell.h │ │ ├── wslCustomCollectionViewCell.m │ │ ├── wslCustomCollectionViewCell.xib │ │ ├── wslCustomTableViewCell.h │ │ ├── wslCustomTableViewCell.m │ │ ├── wslRingTableViewCell.h │ │ ├── wslRingTableViewCell.m │ │ └── wslRingTableViewCell.xib └── 未命名文件夹 │ ├── Views │ ├── newsTableViewCell.h │ ├── newsTableViewCell.m │ └── newsTableViewCell.xib │ └── models │ ├── .DS_Store │ ├── Controllers │ ├── wslNewsDetailViewController.h │ ├── wslNewsDetailViewController.m │ ├── wslNewsViewController.h │ └── wslNewsViewController.m │ ├── newsModel.h │ └── newsModel.m └── WSLAPPTests ├── Info.plist └── WSLAPPTests.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/README.md -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/.DS_Store -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/project.xcworkspace/xcuserdata/qianfeng.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/project.xcworkspace/xcuserdata/qianfeng.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/project.xcworkspace/xcuserdata/wangshuanglong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/project.xcworkspace/xcuserdata/wangshuanglong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/project.xcworkspace/xcuserdata/yigong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/project.xcworkspace/xcuserdata/yigong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/qianfeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/qianfeng.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/qianfeng.xcuserdatad/xcschemes/WSLAPP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/qianfeng.xcuserdatad/xcschemes/WSLAPP.xcscheme -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/qianfeng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/qianfeng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/WSLAPP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/WSLAPP.xcscheme -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/wangshuanglong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/yigong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/yigong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/yigong.xcuserdatad/xcschemes/WSLAPP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/yigong.xcuserdatad/xcschemes/WSLAPP.xcscheme -------------------------------------------------------------------------------- /WSLAPP.xcodeproj/xcuserdata/yigong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP.xcodeproj/xcuserdata/yigong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WSLAPP/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/AppDelegate.h -------------------------------------------------------------------------------- /WSLAPP/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/AppDelegate.m -------------------------------------------------------------------------------- /WSLAPP/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /WSLAPP/Basics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Basics/ADView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/ADView.h -------------------------------------------------------------------------------- /WSLAPP/Basics/ADView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/ADView.m -------------------------------------------------------------------------------- /WSLAPP/Basics/MyTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/MyTabBarController.h -------------------------------------------------------------------------------- /WSLAPP/Basics/MyTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/MyTabBarController.m -------------------------------------------------------------------------------- /WSLAPP/Basics/wslGuide1ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslGuide1ViewController.h -------------------------------------------------------------------------------- /WSLAPP/Basics/wslGuide1ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslGuide1ViewController.m -------------------------------------------------------------------------------- /WSLAPP/Basics/wslNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslNavigationController.h -------------------------------------------------------------------------------- /WSLAPP/Basics/wslNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslNavigationController.m -------------------------------------------------------------------------------- /WSLAPP/Basics/wslRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslRootViewController.h -------------------------------------------------------------------------------- /WSLAPP/Basics/wslRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslRootViewController.m -------------------------------------------------------------------------------- /WSLAPP/Basics/wslVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslVideoPlayerView.h -------------------------------------------------------------------------------- /WSLAPP/Basics/wslVideoPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Basics/wslVideoPlayerView.m -------------------------------------------------------------------------------- /WSLAPP/Drawing/Controllers/wsldrawViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Drawing/Controllers/wsldrawViewController.h -------------------------------------------------------------------------------- /WSLAPP/Drawing/Controllers/wsldrawViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Drawing/Controllers/wsldrawViewController.m -------------------------------------------------------------------------------- /WSLAPP/Drawing/Views/drawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Drawing/Views/drawView.h -------------------------------------------------------------------------------- /WSLAPP/Drawing/Views/drawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Drawing/Views/drawView.m -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/1-1.png -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/1-2.png -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/1-3.png -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/1-4.png -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/1.png -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WSLAPP/Images.xcassets/AppIcon.appiconset/u=1868964496,3555553584&fm=21&gp=0.jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Images.xcassets/AppIcon.appiconset/u=1868964496,3555553584&fm=21&gp=0.jpg.png -------------------------------------------------------------------------------- /WSLAPP/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Info.plist -------------------------------------------------------------------------------- /WSLAPP/Libraries/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworking/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworking/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/AFNetworkingDownload/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/AFNetworkingDownload/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@3x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@3x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD-Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD-Defines.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUD.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDAnimation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDAnimation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDErrorIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDErrorIndicatorView.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDErrorIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDErrorIndicatorView.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeAnimation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeAnimation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeZoomAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDFadeZoomAnimation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndicatorView.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDIndicatorView.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDPieIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDPieIndicatorView.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDPieIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDPieIndicatorView.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDRingIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDRingIndicatorView.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDRingIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDRingIndicatorView.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/JGProgressHUD/JGProgressHUDSuccessIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/JGProgressHUD/JGProgressHUDSuccessIndicatorView.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh-master/Demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh-master/Demo/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh-master/Demo/SVPullToRefreshDemo.xcodeproj/project.xcworkspace/xcuserdata/zhangpeng.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh-master/Demo/SVPullToRefreshDemo.xcodeproj/project.xcworkspace/xcuserdata/zhangpeng.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/SVPullToRefresh.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVInfiniteScrolling.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVPullToRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVPullToRefresh.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVPullToRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/SVPullToRefresh/UIScrollView+SVPullToRefresh.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/TencentOpenAPI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/TencentOpenAPI/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocial.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialAccountManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialAccountManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialBar.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialConfig.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialControllerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialControllerService.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialControllerServiceComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialControllerServiceComment.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialData.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialDataService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialDataService.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialSnsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialSnsData.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialSnsPlatformManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialSnsPlatformManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialSnsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/Header/UMSocialSnsService.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSCommentDetailController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSCommentDetailController.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSCommentInputController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSCommentInputController.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSCommentInputControlleriPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSCommentInputControlleriPad.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSLoginViewController.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSShareListController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSShareListController.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMShareEditViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMShareEditViewController.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMShareEditViewControlleriPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMShareEditViewControlleriPad.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSnsAccountViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/SocialSDKXib/UMSnsAccountViewController.xib -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_Check@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_No_Location@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User-Avatar-Placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User-Avatar-Placeholder@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User_profile_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_User_profile_default@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_account_login@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_account_login@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_add_friend_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_input@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_comment_view_cell_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_find@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_find@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_follow_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_bar_bg_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_bar_bg_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_back@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_close@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_refresh@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_nav_button_send@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_oauth_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_map@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_place_tap@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake__share_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake__share_button@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_shake_close_tap@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_bg@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_account_tap@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_change_to_account_tap@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_oauth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_share_oauth@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_atSel@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at_tap.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_toolbarBg@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_image@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_music@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Buttons/UMS_url_video@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blackArrow.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blackArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blackArrow@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blueArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blueArrow.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blueArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/blueArrow@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/grayArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/grayArrow.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/grayArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/grayArrow@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/EGO/whiteArrow@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_actionsheet_panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_actionsheet_panel@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_normal@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_back_button_tap@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg_black@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_normal@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_button_tap@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_email_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_facebook_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_instagram@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_session@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_session@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_timeline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_laiwang_timeline@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_line_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_line_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qq_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_qzone_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sms_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tumblr_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tumblr_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_twitter_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_favorite_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_session_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_off@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_wechat_timeline_on@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_whatsapp_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_whatsapp_icon@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_session@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_session@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_timeline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_yixin_timeline@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_normal_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_account_tap_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_normal_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_comment_tap_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_off_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_like_on_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_normal_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/SocialSDKBar/UMS_share_tap_white@2x.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Sound/shake_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/UMSocialSDKResourcesNew.bundle/Sound/shake_sound.mp3 -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/en.lproj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/en.lproj/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/en.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/en.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/libUMSocial_Sdk_4.2.3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/libUMSocial_Sdk_4.2.3.a -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_4.2.3/zh-Hans.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_4.2.3/zh-Hans.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/QQApiInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/QQApiInterface.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/QQApiInterfaceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/QQApiInterfaceObject.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentApiInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentApiInterface.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentMessageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentMessageObject.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentOAuth.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentOAuthObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/TencentOAuthObject.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/WeiBoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/WeiBoAPI.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/WeiyunAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/WeiyunAPI.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/sdkdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/Headers/sdkdef.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/TencentOpenAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenAPI.framework/TencentOpenAPI -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/error.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/local.html -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/qqicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/qqicon.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/TencentOpenApi_IOS_Bundle.bundle/success.png -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/UMSocialQQHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/UMSocialQQHandler.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/libSocialQQ.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/TencentOpenAPI/libSocialQQ.a -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/UMSocialWechatHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/UMSocialWechatHandler.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApi.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApiObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/WXApiObject.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/libSocialWechat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/libSocialWechat.a -------------------------------------------------------------------------------- /WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/libWeChatSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/UMSocial_Sdk_Extra_Frameworks/Wechat/libWeChatSDK.a -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/NSString+Hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/NSString+Hashing.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/NSString+Hashing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/NSString+Hashing.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/QFRequestManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/QFRequestManager.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/QFRequestManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/QFRequestManager.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/QFURLRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/QFURLRequest.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/URLRequest/QFURLRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/URLRequest/QFURLRequest.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/QRCodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/QRCodeGenerator.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/QRCodeGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/QRCodeGenerator.m -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/bitstream.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/bitstream.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/mask.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/mask.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/qrencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/qrencode.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/qrencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/qrencode.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/qrinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/qrinput.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/qrinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/qrinput.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/qrspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/qrspec.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/qrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/qrspec.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/rscode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/rscode.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/rscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/rscode.h -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/split.c -------------------------------------------------------------------------------- /WSLAPP/Libraries/libqrencode/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Libraries/libqrencode/split.h -------------------------------------------------------------------------------- /WSLAPP/Map/Controllers/wslMapViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Map/Controllers/wslMapViewController.h -------------------------------------------------------------------------------- /WSLAPP/Map/Controllers/wslMapViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Map/Controllers/wslMapViewController.m -------------------------------------------------------------------------------- /WSLAPP/Map/Views/wslImageAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Map/Views/wslImageAnnotation.h -------------------------------------------------------------------------------- /WSLAPP/Map/Views/wslImageAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Map/Views/wslImageAnnotation.m -------------------------------------------------------------------------------- /WSLAPP/More/Basics/wslMoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Basics/wslMoreViewController.h -------------------------------------------------------------------------------- /WSLAPP/More/Basics/wslMoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Basics/wslMoreViewController.m -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/my2WeiMaViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/my2WeiMaViewController.h -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/my2WeiMaViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/my2WeiMaViewController.m -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/my2WeiMaViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/my2WeiMaViewController.xib -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/saoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/saoViewController.h -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/saoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/saoViewController.m -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/timeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/timeViewController.h -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/timeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/timeViewController.m -------------------------------------------------------------------------------- /WSLAPP/More/Controllers/timeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/More/Controllers/timeViewController.xib -------------------------------------------------------------------------------- /WSLAPP/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Resources/NewsResource/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/NewsResource/eye.png -------------------------------------------------------------------------------- /WSLAPP/Resources/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/appIcon.png -------------------------------------------------------------------------------- /WSLAPP/Resources/button-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/button-cross.png -------------------------------------------------------------------------------- /WSLAPP/Resources/duihao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/duihao.jpg -------------------------------------------------------------------------------- /WSLAPP/Resources/giudImage/guid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/giudImage/guid1.png -------------------------------------------------------------------------------- /WSLAPP/Resources/giudImage/guid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/giudImage/guid2.png -------------------------------------------------------------------------------- /WSLAPP/Resources/giudImage/guid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/giudImage/guid3.png -------------------------------------------------------------------------------- /WSLAPP/Resources/giudImage/guid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/giudImage/guid4.png -------------------------------------------------------------------------------- /WSLAPP/Resources/location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/location@2x.png -------------------------------------------------------------------------------- /WSLAPP/Resources/mingren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/mingren.png -------------------------------------------------------------------------------- /WSLAPP/Resources/moreHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/moreHead.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/aboveMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/aboveMusic.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/backgroundImage5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/backgroundImage5.jpg -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/circleClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/circleClose.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/circleOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/circleOpen.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/cuowu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/cuowu.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/head.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/menu.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/nextMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/nextMusic.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/pause.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/play.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/randomClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/randomClose.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/randomOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/randomOpen.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/sliderThumb_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/sliderThumb_small.png -------------------------------------------------------------------------------- /WSLAPP/Resources/songImage/soundSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/songImage/soundSlider.png -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/autumn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/autumn.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/light.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/light.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/night.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/night.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/search.png -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/spring.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/spring.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/summer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/summer.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/winter.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/winter.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/xiazai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/xiazai.png -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/zan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/zan.png -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/zou.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/zou.mp4 -------------------------------------------------------------------------------- /WSLAPP/Resources/wallpapersResouce/喜欢.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Resources/wallpapersResouce/喜欢.png -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Basics/downloadShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Basics/downloadShareViewController.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Basics/downloadShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Basics/downloadShareViewController.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Basics/songPlayVCManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Basics/songPlayVCManager.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Basics/songPlayVCManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Basics/songPlayVCManager.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Controllers/downloadManagerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Controllers/downloadManagerViewController.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Controllers/downloadManagerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Controllers/downloadManagerViewController.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Controllers/songPlayViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Controllers/songPlayViewController.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Controllers/songPlayViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Controllers/songPlayViewController.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Controllers/wslSongMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Controllers/wslSongMainViewController.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Controllers/wslSongMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Controllers/wslSongMainViewController.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Models/SongModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Models/SongModel.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Models/SongModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Models/SongModel.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Models/geDanModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Models/geDanModel.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Models/geDanModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Models/geDanModel.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Models/haiBaoModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Models/haiBaoModel.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Models/haiBaoModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Models/haiBaoModel.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/CustomCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/CustomCollectionViewCell.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/CustomCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/CustomCollectionViewCell.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/CustomCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/CustomCollectionViewCell.xib -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/downloadTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/downloadTableViewCell.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/downloadTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/downloadTableViewCell.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/downloadTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/downloadTableViewCell.xib -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/imageScrView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/imageScrView.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/imageScrView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/imageScrView.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/wslAVPlayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/wslAVPlayerManager.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/wslAVPlayerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/wslAVPlayerManager.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/wslAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/wslAnalyzer.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/wslAnalyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/wslAnalyzer.m -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/wslLrcEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/wslLrcEach.h -------------------------------------------------------------------------------- /WSLAPP/Songplayer/Views/wslLrcEach.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/Songplayer/Views/wslLrcEach.m -------------------------------------------------------------------------------- /WSLAPP/WSLAPP.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/WSLAPP.entitlements -------------------------------------------------------------------------------- /WSLAPP/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/main.m -------------------------------------------------------------------------------- /WSLAPP/screen.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/screen.jpeg -------------------------------------------------------------------------------- /WSLAPP/wallpaper/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Basics/UIImage+ZJWallPaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Basics/UIImage+ZJWallPaper.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Basics/UIImage+ZJWallPaper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Basics/UIImage+ZJWallPaper.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslCategoryDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslCategoryDetailViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslCategoryDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslCategoryDetailViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslCategoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslCategoryViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslCategoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslCategoryViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslHotViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslHotViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslHotViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslHotViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslNewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslNewViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslNewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslNewViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslPicDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslPicDetailViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslPicDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslPicDetailViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslPicSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslPicSearchViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslPicSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslPicSearchViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslRingsMoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslRingsMoreViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslRingsMoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslRingsMoreViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslpicMoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslpicMoreViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslpicMoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslpicMoreViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslwallpaperViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslwallpaperViewController.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Controllers/wslwallpaperViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Controllers/wslwallpaperViewController.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Models/picDetailModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Models/picDetailModel.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Models/picDetailModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Models/picDetailModel.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Models/pictureModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Models/pictureModel.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Models/pictureModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Models/pictureModel.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Models/ringModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Models/ringModel.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Models/ringModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Models/ringModel.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCommentTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCommentTableViewCell.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCommentTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCommentTableViewCell.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCommentTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCommentTableViewCell.xib -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCustomCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCustomCollectionViewCell.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCustomCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCustomCollectionViewCell.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCustomCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCustomCollectionViewCell.xib -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCustomTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCustomTableViewCell.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslCustomTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslCustomTableViewCell.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslRingTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslRingTableViewCell.h -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslRingTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslRingTableViewCell.m -------------------------------------------------------------------------------- /WSLAPP/wallpaper/Views/wslRingTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/wallpaper/Views/wslRingTableViewCell.xib -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/Views/newsTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/Views/newsTableViewCell.h -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/Views/newsTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/Views/newsTableViewCell.m -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/Views/newsTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/Views/newsTableViewCell.xib -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/.DS_Store -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/Controllers/wslNewsDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/Controllers/wslNewsDetailViewController.h -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/Controllers/wslNewsDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/Controllers/wslNewsDetailViewController.m -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/Controllers/wslNewsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/Controllers/wslNewsViewController.h -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/Controllers/wslNewsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/Controllers/wslNewsViewController.m -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/newsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/newsModel.h -------------------------------------------------------------------------------- /WSLAPP/未命名文件夹/models/newsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPP/未命名文件夹/models/newsModel.m -------------------------------------------------------------------------------- /WSLAPPTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPPTests/Info.plist -------------------------------------------------------------------------------- /WSLAPPTests/WSLAPPTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsl2ls/WSLAPP/HEAD/WSLAPPTests/WSLAPPTests.m --------------------------------------------------------------------------------