├── .github └── workflows │ └── ios.yml ├── .gitignore ├── GoogleService-Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnimatedImageView.swift │ │ ├── Box.swift │ │ ├── CacheSerializer.swift │ │ ├── Filter.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImagePrefetcher.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageTransition.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── Indicator.swift │ │ ├── Kingfisher.h │ │ ├── KingfisherManager.swift │ │ ├── KingfisherOptionsInfo.swift │ │ ├── Resource.swift │ │ ├── String+MD5.swift │ │ ├── ThreadHelper.swift │ │ └── UIButton+Kingfisher.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── songlijun.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ └── xcschememanagement.plist ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ └── SwiftyJSON │ ├── Info.plist │ ├── SwiftyJSON-dummy.m │ ├── SwiftyJSON-prefix.pch │ ├── SwiftyJSON-umbrella.h │ ├── SwiftyJSON.modulemap │ └── SwiftyJSON.xcconfig ├── README.md ├── TouTiao.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── TouTiao.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── TouTiao ├── AdsViewController.swift ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-83.5@2x.png │ ├── Icon-Notification.png │ ├── Icon-Notification@2x-1.png │ ├── Icon-Notification@2x.png │ ├── Icon-Notification@3x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x-1.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x-1.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ └── icon.png ├── Contents.json ├── Icon-60.imageset │ ├── Contents.json │ └── Icon-60@3x.png ├── Launch.imageset │ ├── Contents.json │ └── Launch.png ├── comedy.imageset │ ├── Contents.json │ ├── comedy.png │ ├── comedy@2x.png │ └── comedy@3x.png ├── find.imageset │ ├── Contents.json │ ├── find.png │ ├── find@2x.png │ └── find@3x.png ├── hearts.imageset │ ├── Contents.json │ ├── hearts.png │ ├── hearts@2x.png │ └── hearts@3x.png ├── home.imageset │ ├── Contents.json │ ├── home.png │ ├── home@2x.png │ └── home@3x.png ├── k2.imageset │ ├── Contents.json │ ├── k2.png │ ├── k2@2x.png │ └── k2@3x.png ├── message.imageset │ ├── Contents.json │ ├── message.png │ ├── message@2x.png │ └── message@3x.png ├── moren.imageset │ ├── Contents.json │ └── moren.png ├── myback1.imageset │ ├── Contents.json │ └── myback1.jpg ├── noheart.imageset │ ├── Contents.json │ ├── heart (1).png │ ├── heart (1)@2x.png │ └── heart (1)@3x.png ├── nook.imageset │ ├── Contents.json │ ├── nook.png │ ├── nook@2x.png │ └── nook@3x.png ├── physics.imageset │ ├── Contents.json │ ├── physics.png │ ├── physics@2x.png │ └── physics@3x.png ├── picture-default.imageset │ ├── Contents.json │ └── picture-default.png ├── pretzel.imageset │ ├── Contents.json │ ├── pretzel.png │ ├── pretzel@2x.png │ └── pretzel@3x.png ├── share.imageset │ ├── Contents.json │ ├── share.png │ ├── share@2x.png │ └── share@3x.png ├── sort.imageset │ ├── Contents.json │ ├── sort.png │ ├── sort@2x.png │ └── sort@3x.png ├── store.imageset │ ├── Contents.json │ ├── store.png │ ├── store@2x.png │ └── store@3x.png ├── tag.imageset │ ├── Contents.json │ ├── tag.png │ ├── tag@2x.png │ └── tag@3x.png ├── theatre_mask.imageset │ ├── Contents.json │ ├── theatre_mask.png │ ├── theatre_mask@2x.png │ └── theatre_mask@3x.png ├── touxiang.imageset │ ├── Contents.json │ └── touxiang.png ├── user.imageset │ ├── Contents.json │ ├── user.png │ ├── user@2x.png │ └── user@3x.png └── wink.imageset │ ├── Contents.json │ ├── wink.png │ ├── wink@2x.png │ └── wink@3x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CAPSPageMenu.h ├── CAPSPageMenu.m ├── DSDataCenter.swift ├── FavoriteVideosTableViewController.swift ├── FindMainTableViewController.swift ├── FindTableViewCell.swift ├── HomeVideoTableViewCell.swift ├── HomeVideoTableViewController.swift ├── Info.plist ├── LXFMenuPageController.swift ├── MJRefresh ├── Base │ ├── MJRefreshAutoFooter.h │ ├── MJRefreshAutoFooter.m │ ├── MJRefreshBackFooter.h │ ├── MJRefreshBackFooter.m │ ├── MJRefreshComponent.h │ ├── MJRefreshComponent.m │ ├── MJRefreshFooter.h │ ├── MJRefreshFooter.m │ ├── MJRefreshHeader.h │ └── MJRefreshHeader.m ├── Custom │ ├── Footer │ │ ├── Auto │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ └── MJRefreshAutoStateFooter.m │ │ └── Back │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ └── MJRefreshBackStateFooter.m │ └── Header │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshGifHeader.m │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshNormalHeader.m │ │ ├── MJRefreshStateHeader.h │ │ └── MJRefreshStateHeader.m ├── MJRefresh.bundle │ ├── arrow@2x.png │ ├── en.lproj │ │ └── Localizable.strings │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ └── zh-Hant.lproj │ │ └── Localizable.strings ├── MJRefresh.h ├── MJRefreshConst.h ├── MJRefreshConst.m ├── NSBundle+MJRefresh.h ├── NSBundle+MJRefresh.m ├── UIScrollView+MJExtension.h ├── UIScrollView+MJExtension.m ├── UIScrollView+MJRefresh.h ├── UIScrollView+MJRefresh.m ├── UIView+MJExtension.h └── UIView+MJExtension.m ├── Main2ViewController.swift ├── MainViewController.swift ├── MyMainTableViewController.swift ├── ParallaxHeaderView.h ├── ParallaxHeaderView.m ├── PlayVideoTableViewController.swift ├── PlayVideoViewController.swift ├── RealmVideo.swift ├── SCLAlertView ├── SCLAlertView.swift └── SCLExtensions.swift ├── TouTiao-Bridging-Header.h ├── TouTiaoConfig.swift ├── UIColor-Extension.swift ├── UIDevice+Extension.swift ├── UIImage+ImageEffects.h ├── UIImage+ImageEffects.m ├── UMSocial ├── SocialLibraries │ ├── QQ │ │ ├── UMSocialQQHandler.h │ │ └── libSocialQQ.a │ ├── Sina │ │ ├── UMSocialSinaHandler.h │ │ └── libSocialSina.a │ ├── UniqueId │ │ ├── UMSocialUniqueIdHandler.h │ │ └── libSocialUniqueId.a │ └── WeChat │ │ ├── UMSocialWechatHandler.h │ │ └── libSocialWeChat.a ├── UMSocialSDK │ ├── UMSocialCore.framework │ │ ├── Headers │ │ │ ├── UMSocialCore.h │ │ │ ├── UMSocialCoreImageUtils.h │ │ │ ├── UMSocialDataManager.h │ │ │ ├── UMSocialGlobal.h │ │ │ ├── UMSocialHandler.h │ │ │ ├── UMSocialImageUtil.h │ │ │ ├── UMSocialManager.h │ │ │ ├── UMSocialMessageObject.h │ │ │ ├── UMSocialPlatformConfig.h │ │ │ ├── UMSocialPlatformProvider.h │ │ │ ├── UMSocialResponse.h │ │ │ ├── UMSocialWarterMarkConfig.h │ │ │ └── UMSociallogMacros.h │ │ ├── Info.plist │ │ └── UMSocialCore │ ├── UMSocialNetwork.framework │ │ ├── Headers │ │ │ ├── UMSocialHttpFactory.h │ │ │ ├── UMSocialNetwork.h │ │ │ ├── UMSocialTask.h │ │ │ ├── UMSocialTaskConfig.h │ │ │ └── UMSocialTaskManager.h │ │ ├── Info.plist │ │ └── UMSocialNetwork │ └── UMSocialSDKPromptResources.bundle │ │ ├── en.lproj │ │ └── UMSocialPromptLocalizable.strings │ │ └── zh-Hans.lproj │ │ └── UMSocialPromptLocalizable.strings ├── UMSocialSDKPlugin │ └── libUMSocialLog.a └── UMSocialUI │ ├── UMSocialSDKResources.bundle │ ├── Buttons │ │ ├── UMS_add_friend_off@2x.png │ │ ├── UMS_delete_image_button_normal@2x.png │ │ ├── UMS_nav_button_close@2x.png │ │ ├── UMS_nav_button_send@2x.png │ │ ├── UMS_url_image@2x.png │ │ ├── UMS_url_music@2x.png │ │ └── UMS_url_video@2x.png │ ├── UMSocialPlatformTheme │ │ └── default │ │ │ ├── umsocial_alipay.png │ │ │ ├── umsocial_default.png │ │ │ ├── umsocial_dingding.png │ │ │ ├── umsocial_douban.png │ │ │ ├── umsocial_dropbox.png │ │ │ ├── umsocial_email.png │ │ │ ├── umsocial_evernote.png │ │ │ ├── umsocial_facebook.png │ │ │ ├── umsocial_facebookmessenger.png │ │ │ ├── umsocial_flickr.png │ │ │ ├── umsocial_googleplus.png │ │ │ ├── umsocial_instagram.png │ │ │ ├── umsocial_kakaoTalk.png │ │ │ ├── umsocial_line.png │ │ │ ├── umsocial_linkedin.png │ │ │ ├── umsocial_lw_session.png │ │ │ ├── umsocial_lw_timeline.png │ │ │ ├── umsocial_pinterest.png │ │ │ ├── umsocial_pocket.png │ │ │ ├── umsocial_qq.png │ │ │ ├── umsocial_qzone.png │ │ │ ├── umsocial_renren.png │ │ │ ├── umsocial_sina.png │ │ │ ├── umsocial_sms.png │ │ │ ├── umsocial_tencentWB.png │ │ │ ├── umsocial_tumblr.png │ │ │ ├── umsocial_twitter.png │ │ │ ├── umsocial_vkontakte.png │ │ │ ├── umsocial_wechat.png │ │ │ ├── umsocial_wechat_favorite.png │ │ │ ├── umsocial_wechat_timeline.png │ │ │ ├── umsocial_whatsapp.png │ │ │ ├── umsocial_yixin_favorite.png │ │ │ ├── umsocial_yixin_session.png │ │ │ ├── umsocial_yixin_timeline.png │ │ │ └── umsocial_youdaonote.png │ ├── UMSocialWaterMark │ │ └── umsocial_defaultwatermark.png │ ├── en.lproj │ │ └── UMSocialLocalizable.strings │ └── zh-Hans.lproj │ │ └── UMSocialLocalizable.strings │ └── UShareUI.framework │ ├── Headers │ ├── UMSocialShareUIConfig.h │ ├── UMSocialUIManager.h │ ├── UMSocialUIUtility.h │ └── UShareUI.h │ ├── Info.plist │ └── UShareUI ├── UMSocialSwiftInterface.swift ├── User.swift ├── Video.swift ├── VideoInfo.swift ├── VideoTaxisTableViewController.swift └── ViewController.swift /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/.gitignore -------------------------------------------------------------------------------- /GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/GoogleService-Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/AnimatedImageView.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/CacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ImageTransition.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/Indicator.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/KingfisherManager.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/Resource.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ThreadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/ThreadHelper.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/SwiftyJSON.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/SwiftyJSON.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Pods.xcodeproj/xcuserdata/songlijun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /Pods/SwiftyJSON/Source/SwiftyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/SwiftyJSON/Source/SwiftyJSON.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Kingfisher/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/SwiftyJSON/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ds_ios 2 | 逗视iOS客户端, swfit 开发 3 | -------------------------------------------------------------------------------- /TouTiao.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TouTiao.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TouTiao.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TouTiao.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TouTiao/AdsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/AdsViewController.swift -------------------------------------------------------------------------------- /TouTiao/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/AppDelegate.swift -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification@2x-1.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Notification@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x-1.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/Icon-60.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/Icon-60.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/Icon-60.imageset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/Icon-60.imageset/Icon-60@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/Launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/Launch.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/Launch.imageset/Launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/Launch.imageset/Launch.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/comedy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/comedy.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/comedy.imageset/comedy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/comedy.imageset/comedy.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/comedy.imageset/comedy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/comedy.imageset/comedy@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/comedy.imageset/comedy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/comedy.imageset/comedy@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/find.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/find.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/find.imageset/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/find.imageset/find.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/find.imageset/find@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/find.imageset/find@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/find.imageset/find@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/find.imageset/find@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/hearts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/hearts.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/hearts.imageset/hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/hearts.imageset/hearts.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/hearts.imageset/hearts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/hearts.imageset/hearts@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/hearts.imageset/hearts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/hearts.imageset/hearts@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/home.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/home.imageset/home.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/home.imageset/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/home.imageset/home@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/home.imageset/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/home.imageset/home@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/k2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/k2.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/k2.imageset/k2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/k2.imageset/k2.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/k2.imageset/k2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/k2.imageset/k2@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/k2.imageset/k2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/k2.imageset/k2@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/message.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/message.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/message.imageset/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/message.imageset/message.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/message.imageset/message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/message.imageset/message@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/message.imageset/message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/message.imageset/message@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/moren.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/moren.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/moren.imageset/moren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/moren.imageset/moren.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/myback1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/myback1.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/myback1.imageset/myback1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/myback1.imageset/myback1.jpg -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/noheart.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/noheart.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/noheart.imageset/heart (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/noheart.imageset/heart (1).png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/noheart.imageset/heart (1)@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/noheart.imageset/heart (1)@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/noheart.imageset/heart (1)@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/noheart.imageset/heart (1)@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/nook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/nook.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/nook.imageset/nook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/nook.imageset/nook.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/nook.imageset/nook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/nook.imageset/nook@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/nook.imageset/nook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/nook.imageset/nook@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/physics.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/physics.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/physics.imageset/physics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/physics.imageset/physics.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/physics.imageset/physics@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/physics.imageset/physics@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/physics.imageset/physics@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/physics.imageset/physics@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/picture-default.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/picture-default.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/picture-default.imageset/picture-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/picture-default.imageset/picture-default.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/pretzel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/pretzel.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/pretzel.imageset/pretzel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/pretzel.imageset/pretzel.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/pretzel.imageset/pretzel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/pretzel.imageset/pretzel@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/pretzel.imageset/pretzel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/pretzel.imageset/pretzel@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/share.imageset/share.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/share.imageset/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/share.imageset/share@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/share.imageset/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/share.imageset/share@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/sort.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/sort.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/sort.imageset/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/sort.imageset/sort.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/sort.imageset/sort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/sort.imageset/sort@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/sort.imageset/sort@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/sort.imageset/sort@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/store.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/store.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/store.imageset/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/store.imageset/store.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/store.imageset/store@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/store.imageset/store@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/store.imageset/store@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/store.imageset/store@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/tag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/tag.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/tag.imageset/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/tag.imageset/tag.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/tag.imageset/tag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/tag.imageset/tag@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/tag.imageset/tag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/tag.imageset/tag@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/theatre_mask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/theatre_mask.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/theatre_mask.imageset/theatre_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/theatre_mask.imageset/theatre_mask.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/theatre_mask.imageset/theatre_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/theatre_mask.imageset/theatre_mask@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/theatre_mask.imageset/theatre_mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/theatre_mask.imageset/theatre_mask@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/touxiang.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/touxiang.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/touxiang.imageset/touxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/touxiang.imageset/touxiang.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/user.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/user.imageset/user.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/user.imageset/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/user.imageset/user@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/user.imageset/user@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/user.imageset/user@3x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/wink.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/wink.imageset/Contents.json -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/wink.imageset/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/wink.imageset/wink.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/wink.imageset/wink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/wink.imageset/wink@2x.png -------------------------------------------------------------------------------- /TouTiao/Assets.xcassets/wink.imageset/wink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Assets.xcassets/wink.imageset/wink@3x.png -------------------------------------------------------------------------------- /TouTiao/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TouTiao/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TouTiao/CAPSPageMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/CAPSPageMenu.h -------------------------------------------------------------------------------- /TouTiao/CAPSPageMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/CAPSPageMenu.m -------------------------------------------------------------------------------- /TouTiao/DSDataCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/DSDataCenter.swift -------------------------------------------------------------------------------- /TouTiao/FavoriteVideosTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/FavoriteVideosTableViewController.swift -------------------------------------------------------------------------------- /TouTiao/FindMainTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/FindMainTableViewController.swift -------------------------------------------------------------------------------- /TouTiao/FindTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/FindTableViewCell.swift -------------------------------------------------------------------------------- /TouTiao/HomeVideoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/HomeVideoTableViewCell.swift -------------------------------------------------------------------------------- /TouTiao/HomeVideoTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/HomeVideoTableViewController.swift -------------------------------------------------------------------------------- /TouTiao/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Info.plist -------------------------------------------------------------------------------- /TouTiao/LXFMenuPageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/LXFMenuPageController.swift -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /TouTiao/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /TouTiao/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /TouTiao/Main2ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Main2ViewController.swift -------------------------------------------------------------------------------- /TouTiao/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MainViewController.swift -------------------------------------------------------------------------------- /TouTiao/MyMainTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/MyMainTableViewController.swift -------------------------------------------------------------------------------- /TouTiao/ParallaxHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/ParallaxHeaderView.h -------------------------------------------------------------------------------- /TouTiao/ParallaxHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/ParallaxHeaderView.m -------------------------------------------------------------------------------- /TouTiao/PlayVideoTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/PlayVideoTableViewController.swift -------------------------------------------------------------------------------- /TouTiao/PlayVideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/PlayVideoViewController.swift -------------------------------------------------------------------------------- /TouTiao/RealmVideo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/RealmVideo.swift -------------------------------------------------------------------------------- /TouTiao/SCLAlertView/SCLAlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/SCLAlertView/SCLAlertView.swift -------------------------------------------------------------------------------- /TouTiao/SCLAlertView/SCLExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/SCLAlertView/SCLExtensions.swift -------------------------------------------------------------------------------- /TouTiao/TouTiao-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/TouTiao-Bridging-Header.h -------------------------------------------------------------------------------- /TouTiao/TouTiaoConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/TouTiaoConfig.swift -------------------------------------------------------------------------------- /TouTiao/UIColor-Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UIColor-Extension.swift -------------------------------------------------------------------------------- /TouTiao/UIDevice+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UIDevice+Extension.swift -------------------------------------------------------------------------------- /TouTiao/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /TouTiao/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/QQ/UMSocialQQHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/QQ/UMSocialQQHandler.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/QQ/libSocialQQ.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/QQ/libSocialQQ.a -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/Sina/UMSocialSinaHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/Sina/UMSocialSinaHandler.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/Sina/libSocialSina.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/Sina/libSocialSina.a -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/UniqueId/UMSocialUniqueIdHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/UniqueId/UMSocialUniqueIdHandler.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/UniqueId/libSocialUniqueId.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/UniqueId/libSocialUniqueId.a -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/WeChat/UMSocialWechatHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/WeChat/UMSocialWechatHandler.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/SocialLibraries/WeChat/libSocialWeChat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/SocialLibraries/WeChat/libSocialWeChat.a -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialCore.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialCoreImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialCoreImageUtils.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialDataManager.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialGlobal.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialHandler.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialImageUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialImageUtil.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialManager.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialMessageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialMessageObject.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialPlatformConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialPlatformConfig.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialPlatformProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialPlatformProvider.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialResponse.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialWarterMarkConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSocialWarterMarkConfig.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSociallogMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Headers/UMSociallogMacros.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/Info.plist -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/UMSocialCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialCore.framework/UMSocialCore -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialHttpFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialHttpFactory.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialNetwork.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialTask.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialTaskConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialTaskConfig.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Headers/UMSocialTaskManager.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/Info.plist -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/UMSocialNetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialNetwork.framework/UMSocialNetwork -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialSDKPromptResources.bundle/en.lproj/UMSocialPromptLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialSDKPromptResources.bundle/en.lproj/UMSocialPromptLocalizable.strings -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDK/UMSocialSDKPromptResources.bundle/zh-Hans.lproj/UMSocialPromptLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDK/UMSocialSDKPromptResources.bundle/zh-Hans.lproj/UMSocialPromptLocalizable.strings -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialSDKPlugin/libUMSocialLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialSDKPlugin/libUMSocialLog.a -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_add_friend_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_add_friend_off@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_delete_image_button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_delete_image_button_normal@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_nav_button_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_nav_button_close@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_nav_button_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_nav_button_send@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_url_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_url_image@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_url_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_url_music@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_url_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/Buttons/UMS_url_video@2x.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_alipay.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_default.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_dingding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_dingding.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_douban.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_dropbox.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_email.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_evernote.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_facebook.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_facebookmessenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_facebookmessenger.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_flickr.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_googleplus.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_instagram.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_kakaoTalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_kakaoTalk.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_line.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_linkedin.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_lw_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_lw_session.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_lw_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_lw_timeline.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_pinterest.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_pocket.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_qq.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_qzone.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_renren.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_sina.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_sms.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_tencentWB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_tencentWB.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_tumblr.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_twitter.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_vkontakte.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_wechat.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_wechat_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_wechat_favorite.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_wechat_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_wechat_timeline.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_whatsapp.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_yixin_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_yixin_favorite.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_yixin_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_yixin_session.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_yixin_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_yixin_timeline.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_youdaonote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialPlatformTheme/default/umsocial_youdaonote.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialWaterMark/umsocial_defaultwatermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/UMSocialWaterMark/umsocial_defaultwatermark.png -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/en.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/en.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/zh-Hans.lproj/UMSocialLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UMSocialSDKResources.bundle/zh-Hans.lproj/UMSocialLocalizable.strings -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UMSocialShareUIConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UMSocialShareUIConfig.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UMSocialUIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UMSocialUIManager.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UMSocialUIUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UMSocialUIUtility.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UShareUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Headers/UShareUI.h -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UShareUI.framework/Info.plist -------------------------------------------------------------------------------- /TouTiao/UMSocial/UMSocialUI/UShareUI.framework/UShareUI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocial/UMSocialUI/UShareUI.framework/UShareUI -------------------------------------------------------------------------------- /TouTiao/UMSocialSwiftInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/UMSocialSwiftInterface.swift -------------------------------------------------------------------------------- /TouTiao/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/User.swift -------------------------------------------------------------------------------- /TouTiao/Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/Video.swift -------------------------------------------------------------------------------- /TouTiao/VideoInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/VideoInfo.swift -------------------------------------------------------------------------------- /TouTiao/VideoTaxisTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/VideoTaxisTableViewController.swift -------------------------------------------------------------------------------- /TouTiao/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doushiDev/ds_ios/HEAD/TouTiao/ViewController.swift --------------------------------------------------------------------------------