├── SwiftBooks └── Pods │ ├── Target Support Files │ ├── MJRefresh │ │ ├── MJRefresh.xcconfig │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.modulemap │ ├── FMDB │ │ ├── FMDB.xcconfig │ │ ├── FMDB-prefix.pch │ │ ├── FMDB.modulemap │ │ └── FMDB-dummy.m │ ├── Toast │ │ ├── Toast.xcconfig │ │ ├── Toast-prefix.pch │ │ ├── Toast.modulemap │ │ └── Toast-dummy.m │ ├── UITableView+FDTemplateLayoutCell │ │ ├── UITableView+FDTemplateLayoutCell.xcconfig │ │ └── UITableView+FDTemplateLayoutCell-prefix.pch │ ├── SDWebImage │ │ ├── SDWebImage.xcconfig │ │ └── SDWebImage-prefix.pch │ ├── MBProgressHUD │ │ ├── MBProgressHUD.xcconfig │ │ └── MBProgressHUD-prefix.pch │ └── Masonry │ │ ├── Masonry-prefix.pch │ │ ├── Masonry.xcconfig │ │ ├── Masonry.modulemap │ │ └── Masonry-dummy.m │ ├── Headers │ └── Private │ │ ├── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMResultSet.h │ │ ├── FMDatabasePool.h │ │ ├── FMDatabaseQueue.h │ │ └── FMDatabaseAdditions.h │ │ ├── Masonry │ │ ├── Masonry.h │ │ ├── MASUtilities.h │ │ ├── MASConstraint.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── View+MASAdditions.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── NSArray+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ └── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── MJRefresh │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshFooter.h │ │ ├── MJRefreshHeader.h │ │ ├── UIView+MJExtension.h │ │ ├── MJRefreshAutoFooter.h │ │ ├── MJRefreshBackFooter.h │ │ ├── MJRefreshComponent.h │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJRefresh.h │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshStateHeader.h │ │ ├── MJRefreshAutoGifFooter.h │ │ ├── MJRefreshBackGifFooter.h │ │ ├── MJRefreshAutoStateFooter.h │ │ ├── MJRefreshBackStateFooter.h │ │ ├── MJRefreshAutoNormalFooter.h │ │ └── MJRefreshBackNormalFooter.h │ │ ├── Toast │ │ └── UIView+Toast.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── SDWebImage │ │ ├── SDImageCache.h │ │ ├── UIImage+GIF.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageManager.h │ │ ├── UIButton+WebCache.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── UIView+WebCacheOperation.h │ │ ├── SDWebImageDownloaderOperation.h │ │ └── UIImageView+HighlightedWebCache.h │ │ ├── AFNetworking │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLSessionManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIWebView+AFNetworking.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ └── UIActivityIndicatorView+AFNetworking.h │ │ └── UITableView+FDTemplateLayoutCell │ │ ├── UITableView+FDKeyedHeightCache.h │ │ ├── UITableView+FDTemplateLayoutCell.h │ │ ├── UITableView+FDIndexPathHeightCache.h │ │ └── UITableView+FDTemplateLayoutCellDebug.h │ └── MJRefresh │ └── MJRefresh │ └── MJRefresh.bundle │ └── arrow@2x.png ├── 01-网络检测 ├── podfile └── Pods │ ├── Headers │ ├── Private │ │ ├── Reachability │ │ │ └── Reachability.h │ │ └── AFNetworking │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIWebView+AFNetworking.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ └── UIActivityIndicatorView+AFNetworking.h │ └── Public │ │ ├── Reachability │ │ └── Reachability.h │ │ └── AFNetworking │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLSessionManager.h │ │ ├── AFHTTPSessionManager.h │ │ ├── UIKit+AFNetworking.h │ │ ├── AFHTTPRequestOperation.h │ │ ├── AFURLConnectionOperation.h │ │ ├── UIButton+AFNetworking.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── UIWebView+AFNetworking.h │ │ ├── AFHTTPRequestOperationManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── UIAlertView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ └── UIActivityIndicatorView+AFNetworking.h │ └── Target Support Files │ ├── Pods-Reachability │ ├── Pods-Reachability.xcconfig │ └── Pods-Reachability-prefix.pch │ ├── Pods-AFNetworking │ └── Pods-AFNetworking-prefix.pch │ └── Pods │ └── Pods-dummy.m ├── Swift_Weather └── Pods │ ├── Headers │ ├── Private │ │ └── AFNetworking │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIWebView+AFNetworking.h │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ └── UIActivityIndicatorView+AFNetworking.h │ └── Public │ │ └── AFNetworking │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFURLSessionManager.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIWebView+AFNetworking.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ └── UIActivityIndicatorView+AFNetworking.h │ └── Target Support Files │ └── Pods │ └── Pods-dummy.m ├── TFVideoPlayer ├── SeekTV_Img │ ├── Contents.json │ ├── new.imageset │ │ ├── .svn │ │ │ ├── prop-base │ │ │ │ ├── new.png.svn-base │ │ │ │ ├── new@2x.png.svn-base │ │ │ │ └── new@3x.png.svn-base │ │ │ └── text-base │ │ │ │ └── new.png.svn-base │ │ ├── new.png │ │ ├── new@2x.png │ │ └── new@3x.png │ ├── btn_up.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_up.png.svn-base │ │ │ │ ├── btn_up@2x.png.svn-base │ │ │ │ └── btn_up@3x.png.svn-base │ │ ├── btn_up.png │ │ ├── btn_up@2x.png │ │ └── btn_up@3x.png │ ├── dian.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── dian.png.svn-base │ │ │ │ ├── dian@2x.png.svn-base │ │ │ │ └── dian@3x.png.svn-base │ │ ├── dian.png │ │ ├── dian@2x.png │ │ └── dian@3x.png │ ├── left.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── left.png.svn-base │ │ │ │ ├── left@2x.png.svn-base │ │ │ │ └── left@3x.png.svn-base │ │ ├── left.png │ │ ├── left@2x.png │ │ └── left@3x.png │ ├── new_tv.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── new_tv.png.svn-base │ │ │ │ ├── new_tv@2x.png.svn-base │ │ │ │ └── new_tv@3x.png.svn-base │ │ ├── new_tv.png │ │ ├── new_tv@2x.png │ │ └── new_tv@3x.png │ ├── no_1.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── no_1.png.svn-base │ │ │ │ ├── no_1@2x.png.svn-base │ │ │ │ └── no_1@3x.png.svn-base │ │ ├── no_1.png │ │ ├── no_1@2x.png │ │ └── no_1@3x.png │ ├── no_2.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── no_2.png.svn-base │ │ │ │ ├── no_2@2x.png.svn-base │ │ │ │ └── no_2@3x.png.svn-base │ │ ├── no_2.png │ │ ├── no_2@2x.png │ │ └── no_2@3x.png │ ├── no_3.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── no_3.png.svn-base │ │ │ │ ├── no_3@2x.png.svn-base │ │ │ │ └── no_3@3x.png.svn-base │ │ ├── no_3.png │ │ ├── no_3@2x.png │ │ └── no_3@3x.png │ ├── no_4.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── no_4.png.svn-base │ │ │ │ ├── no_4@2x.png.svn-base │ │ │ │ └── no_4@3x.png.svn-base │ │ ├── no_4.png │ │ ├── no_4@2x.png │ │ └── no_4@3x.png │ ├── play.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── play.png.svn-base │ │ │ │ ├── play@2x.png.svn-base │ │ │ │ └── play@3x.png.svn-base │ │ ├── play.png │ │ ├── play@2x.png │ │ └── play@3x.png │ ├── right.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── right.png.svn-base │ │ │ │ ├── right@2x.png.svn-base │ │ │ │ └── right@3x.png.svn-base │ │ ├── right.png │ │ ├── right@2x.png │ │ └── right@3x.png │ ├── time.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── time.png.svn-base │ │ │ │ ├── time@2x.png.svn-base │ │ │ │ └── time@3x.png.svn-base │ │ ├── time.png │ │ ├── time@2x.png │ │ └── time@3x.png │ ├── dian_ad.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── dian_ad.png.svn-base │ │ │ │ ├── dian_ad@2x.png.svn-base │ │ │ │ └── dian_ad@3x.png.svn-base │ │ ├── dian_ad.png │ │ ├── dian_ad@2x.png │ │ └── dian_ad@3x.png │ ├── ic_blue.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_blue.png.svn-base │ │ │ │ ├── ic_blue@2x.png.svn-base │ │ │ │ └── ic_blue@3x.png.svn-base │ │ ├── ic_blue.png │ │ ├── ic_blue@2x.png │ │ └── ic_blue@3x.png │ ├── ic_check.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_check.png.svn-base │ │ │ │ ├── ic_check@2x.png.svn-base │ │ │ │ └── ic_check@3x.png.svn-base │ │ ├── ic_check.png │ │ ├── ic_check@2x.png │ │ └── ic_check@3x.png │ ├── ic_gray.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_gray.png.svn-base │ │ │ │ ├── ic_gray@2x.png.svn-base │ │ │ │ └── ic_gray@3x.png.svn-base │ │ ├── ic_gray.png │ │ ├── ic_gray@2x.png │ │ └── ic_gray@3x.png │ ├── img_hot.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── img_hot.png.svn-base │ │ │ │ ├── img_hot@2x.png.svn-base │ │ │ │ └── img_hot@3x.png.svn-base │ │ ├── img_hot.png │ │ ├── img_hot@2x.png │ │ └── img_hot@3x.png │ ├── refresh.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── refresh.png.svn-base │ │ │ │ ├── refresh@2x.png.svn-base │ │ │ │ └── refresh@3x.png.svn-base │ │ ├── refresh.png │ │ ├── refresh@2x.png │ │ └── refresh@3x.png │ ├── search_x.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── search_x.png.svn-base │ │ │ │ ├── search_x@2x.png.svn-base │ │ │ │ └── search_x@3x.png.svn-base │ │ ├── search_x.png │ │ ├── search_x@2x.png │ │ └── search_x@3x.png │ ├── bg_search.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── bg_search@3x.png.svn-base │ │ └── bg_search@3x.png │ ├── btn_drag.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── btn_drag@3x.png.svn-base │ │ └── btn_drag@3x.png │ ├── btn_play_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_play_h.png.svn-base │ │ │ │ ├── btn_play_h@2x.png.svn-base │ │ │ │ └── btn_play_h@3x.png.svn-base │ │ ├── btn_play_h.png │ │ ├── btn_play_h@2x.png │ │ └── btn_play_h@3x.png │ ├── btn_play_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_play_n.png.svn-base │ │ │ │ ├── btn_play_n@2x.png.svn-base │ │ │ │ └── btn_play_n@3x.png.svn-base │ │ ├── btn_play_n.png │ │ ├── btn_play_n@2x.png │ │ └── btn_play_n@3x.png │ ├── download_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── download_h.png.svn-base │ │ │ │ ├── download_h@2x.png.svn-base │ │ │ │ └── download_h@3x.png.svn-base │ │ ├── download_h.png │ │ ├── download_h@2x.png │ │ └── download_h@3x.png │ ├── download_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── download_n.png.svn-base │ │ │ │ ├── download_n@2x.png.svn-base │ │ │ │ └── download_n@3x.png.svn-base │ │ ├── download_n.png │ │ ├── download_n@2x.png │ │ └── download_n@3x.png │ ├── ic_Choose_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── ic_Choose_h.png.svn-base │ │ └── ic_Choose_h.png │ ├── ic_Choose_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── ic_Choose_n.png.svn-base │ │ └── ic_Choose_n.png │ ├── icon_play.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_play.png.svn-base │ │ │ │ ├── icon_play@2x.png.svn-base │ │ │ │ └── icon_play@3x.png.svn-base │ │ ├── icon_play.png │ │ ├── icon_play@2x.png │ │ └── icon_play@3x.png │ ├── icon_time.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_time.png.svn-base │ │ │ │ ├── icon_time@2x.png.svn-base │ │ │ │ └── icon_time@3x.png.svn-base │ │ ├── icon_time.png │ │ ├── icon_time@2x.png │ │ └── icon_time@3x.png │ ├── nav_search.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── nav_search.png.svn-base │ │ │ │ ├── nav_search@2x.png.svn-base │ │ │ │ └── nav_search@3x.png.svn-base │ │ ├── nav_search.png │ │ ├── nav_search@2x.png │ │ └── nav_search@3x.png │ ├── search_hot.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── search_hot.png.svn-base │ │ │ │ ├── search_hot@2x.png.svn-base │ │ │ │ └── search_hot@3x.png.svn-base │ │ ├── search_hot.png │ │ ├── search_hot@2x.png │ │ └── search_hot@3x.png │ ├── search_time.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── search_time.png.svn-base │ │ │ │ ├── search_time@2x.png.svn-base │ │ │ │ └── search_time@3x.png.svn-base │ │ ├── search_time.png │ │ ├── search_time@2x.png │ │ └── search_time@3x.png │ ├── GuideView_Set.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── GuideView_Set.png.svn-base │ │ └── GuideView_Set.png │ ├── btn_timeout_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_timeout_n.png.svn-base │ │ │ │ ├── btn_timeout_n@2x.png.svn-base │ │ │ │ └── btn_timeout_n@3x.png.svn-base │ │ ├── btn_timeout_n.png │ │ ├── btn_timeout_n@2x.png │ │ └── btn_timeout_n@3x.png │ ├── btn_wating_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_wating_n.png.svn-base │ │ │ │ ├── btn_wating_n@2x.png.svn-base │ │ │ │ └── btn_wating_n@3x.png.svn-base │ │ ├── btn_wating_n.png │ │ ├── btn_wating_n@2x.png │ │ └── btn_wating_n@3x.png │ ├── icon_playblue.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_playblue.png.svn-base │ │ │ │ ├── icon_playblue@2x.png.svn-base │ │ │ │ └── icon_playblue@3x.png.svn-base │ │ ├── icon_playblue.png │ │ ├── icon_playblue@2x.png │ │ └── icon_playblue@3x.png │ ├── icon_recycle.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_recycle.png.svn-base │ │ │ │ ├── icon_recycle@2x.png.svn-base │ │ │ │ └── icon_recycle@3x.png.svn-base │ │ ├── icon_recycle.png │ │ ├── icon_recycle@2x.png │ │ └── icon_recycle@3x.png │ ├── icon_score_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_score_h.png.svn-base │ │ │ │ ├── icon_score_h@2x.png.svn-base │ │ │ │ └── icon_score_h@3x.png.svn-base │ │ ├── icon_score_h.png │ │ ├── icon_score_h@2x.png │ │ └── icon_score_h@3x.png │ ├── icon_score_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_score_n.png.svn-base │ │ │ │ ├── icon_score_n@2x.png.svn-base │ │ │ │ └── icon_score_n@3x.png.svn-base │ │ ├── icon_score_n.png │ │ ├── icon_score_n@2x.png │ │ └── icon_score_n@3x.png │ ├── icon_share_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_share_h.png.svn-base │ │ │ │ ├── icon_share_h@2x.png.svn-base │ │ │ │ └── icon_share_h@3x.png.svn-base │ │ ├── icon_share_h.png │ │ ├── icon_share_h@2x.png │ │ └── icon_share_h@3x.png │ ├── icon_share_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_share_n.png.svn-base │ │ │ │ ├── icon_share_n@2x.png.svn-base │ │ │ │ └── icon_share_n@3x.png.svn-base │ │ ├── icon_share_n.png │ │ ├── icon_share_n@2x.png │ │ └── icon_share_n@3x.png │ ├── icon_start_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_offline_h.png.svn-base │ │ │ │ ├── icon_offline_h@2x.png.svn-base │ │ │ │ └── icon_offline_h@3x.png.svn-base │ │ ├── icon_offline_h.png │ │ ├── icon_offline_h@2x.png │ │ └── icon_offline_h@3x.png │ ├── icon_start_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_offline_n.png.svn-base │ │ │ │ ├── icon_offline_n@2x.png.svn-base │ │ │ │ └── icon_offline_n@3x.png.svn-base │ │ ├── icon_offline_n.png │ │ ├── icon_offline_n@2x.png │ │ └── icon_offline_n@3x.png │ ├── icon_timeout.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_timeout.png.svn-base │ │ │ │ ├── icon_timeout@2x.png.svn-base │ │ │ │ └── icon_timeout@3x.png.svn-base │ │ ├── icon_timeout.png │ │ ├── icon_timeout@2x.png │ │ └── icon_timeout@3x.png │ ├── icon_voice_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_voice_h.png.svn-base │ │ │ │ ├── icon_voice_h@2x.png.svn-base │ │ │ │ └── icon_voice_h@3x.png.svn-base │ │ ├── icon_voice_h.png │ │ ├── icon_voice_h@2x.png │ │ └── icon_voice_h@3x.png │ ├── icon_voice_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_voice_n.png.svn-base │ │ │ │ ├── icon_voice_n@2x.png.svn-base │ │ │ │ └── icon_voice_n@3x.png.svn-base │ │ ├── icon_voice_n.png │ │ ├── icon_voice_n@2x.png │ │ └── icon_voice_n@3x.png │ ├── list_video_qq.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── list_video_qq.png.svn-base │ │ │ │ ├── list_video_qq@2x.png.svn-base │ │ │ │ └── list_video_qq@3x.png.svn-base │ │ ├── list_video_qq.png │ │ ├── list_video_qq@2x.png │ │ └── list_video_qq@3x.png │ ├── nopic_190x210.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── nopic_190x210.png.svn-base │ │ │ │ ├── nopic_190x210@2x.png.svn-base │ │ │ │ └── nopic_190x210@3x.png.svn-base │ │ ├── nopic_190x210.png │ │ ├── nopic_190x210@2x.png │ │ └── nopic_190x210@3x.png │ ├── text---right.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── text---right.png.svn-base │ │ │ │ ├── text---right@2x.png.svn-base │ │ │ │ └── text---right@3x.png.svn-base │ │ ├── text---right.png │ │ ├── text---right@2x.png │ │ └── text---right@3x.png │ ├── GuideView_Search.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── GuideView_Search.png.svn-base │ ├── GuideView_SeekTV.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── GuideView_SeekTV.png.svn-base │ │ │ ├── GuideView_SeekTV@2x.png.svn-base │ │ │ └── GuideView_SeekTV@3x.png.svn-base │ ├── bg_btn_video_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── bg_btn_video_h.png.svn-base │ │ │ │ ├── bg_btn_video_h@2x.png.svn-base │ │ │ │ └── bg_btn_video_h@3x.png.svn-base │ │ ├── bg_btn_video_h.png │ │ ├── bg_btn_video_h@2x.png │ │ └── bg_btn_video_h@3x.png │ ├── bg_btn_video_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── bg_btn_video_n.png.svn-base │ │ │ │ ├── bg_btn_video_n@2x.png.svn-base │ │ │ │ └── bg_btn_video_n@3x.png.svn-base │ │ ├── bg_btn_video_n.png │ │ ├── bg_btn_video_n@2x.png │ │ └── bg_btn_video_n@3x.png │ ├── btn_downlaod_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_downlaod_n.png.svn-base │ │ │ │ ├── btn_downlaod_n@2x.png.svn-base │ │ │ │ └── btn_downlaod_n@3x.png.svn-base │ │ ├── btn_downlaod_n.png │ │ ├── btn_downlaod_n@2x.png │ │ └── btn_downlaod_n@3x.png │ ├── btn_downlaod_no.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_downlaod_no.png.svn-base │ │ │ │ ├── btn_downlaod_no@2x.png.svn-base │ │ │ │ └── btn_downlaod_no@3x.png.svn-base │ │ └── btn_downlaod_no.png │ ├── btn_me_bar_h_9.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── btn_me_bar_h_9.png.svn-base │ │ └── btn_me_bar_h_9.png │ ├── btn_me_bar_n_9.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── btn_me_bar_n_9.png.svn-base │ │ └── btn_me_bar_n_9.png │ ├── btn_me_circle_ok.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── btn_me_circle_ok.png.svn-base │ │ │ ├── btn_me_circle_ok@2x.png.svn-base │ │ │ └── btn_me_circle_ok@3x.png.svn-base │ ├── btn_nav_search_h.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── btn_nav_search_h.png.svn-base │ │ │ ├── btn_nav_search_h@2x.png.svn-base │ │ │ └── btn_nav_search_h@3x.png.svn-base │ ├── btn_nav_search_n.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── btn_nav_search_n.png.svn-base │ │ │ ├── btn_nav_search_n@2x.png.svn-base │ │ │ └── btn_nav_search_n@3x.png.svn-base │ ├── hopper_ic_down.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── hopper_ic_down.png.svn-base │ │ │ │ ├── hopper_ic_down@2x.png.svn-base │ │ │ │ └── hopper_ic_down@3x.png.svn-base │ │ ├── hopper_ic_down.png │ │ ├── hopper_ic_down@2x.png │ │ └── hopper_ic_down@3x.png │ ├── hopper_item_bg_9.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── hopper_item_bg_9.png.svn-base │ ├── ic_no-comments.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_no-comments.png.svn-base │ │ │ │ ├── ic_no-comments@2x.png.svn-base │ │ │ │ └── ic_no-comments@3x.png.svn-base │ │ ├── ic_no-comments.png │ │ ├── ic_no-comments@2x.png │ │ └── ic_no-comments@3x.png │ ├── icon_attention_n.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── icon_attention_n.png.svn-base │ │ │ ├── icon_attention_n@2x.png.svn-base │ │ │ └── icon_attention_n@3x.png.svn-base │ ├── icon_collect_h-1.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_collect_h.png.svn-base │ │ │ │ ├── icon_collect_h@2x.png.svn-base │ │ │ │ └── icon_collect_h@3x.png.svn-base │ │ └── icon_collect_h.png │ ├── icon_collect_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_collect_h.png.svn-base │ │ │ │ ├── icon_collect_h@2x.png.svn-base │ │ │ │ └── icon_collect_h@3x.png.svn-base │ │ ├── icon_collect_h.png │ │ ├── icon_collect_h@2x.png │ │ └── icon_collect_h@3x.png │ ├── icon_collect_n-1.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_collect_n.png.svn-base │ │ │ │ ├── icon_collect_n@2x.png.svn-base │ │ │ │ └── icon_collect_n@3x.png.svn-base │ │ └── icon_collect_n.png │ ├── icon_collect_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_collect_n.png.svn-base │ │ │ │ ├── icon_collect_n@2x.png.svn-base │ │ │ │ └── icon_collect_n@3x.png.svn-base │ │ ├── icon_collect_n.png │ │ ├── icon_collect_n@2x.png │ │ └── icon_collect_n@3x.png │ ├── icon_download_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_download_h.png.svn-base │ │ │ │ ├── icon_download_h@2x.png.svn-base │ │ │ │ └── icon_download_h@3x.png.svn-base │ │ └── icon_download_h.png │ ├── icon_download_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_download_n.png.svn-base │ │ │ │ ├── icon_download_n@2x.png.svn-base │ │ │ │ └── icon_download_n@3x.png.svn-base │ │ └── icon_download_n.png │ ├── icon_offline_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_offline_h.png.svn-base │ │ │ │ ├── icon_offline_h@2x.png.svn-base │ │ │ │ └── icon_offline_h@3x.png.svn-base │ │ ├── icon_offline_h.png │ │ ├── icon_offline_h@2x.png │ │ └── icon_offline_h@3x.png │ ├── icon_offline_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_offline_n.png.svn-base │ │ │ │ ├── icon_offline_n@2x.png.svn-base │ │ │ │ └── icon_offline_n@3x.png.svn-base │ │ ├── icon_offline_n.png │ │ ├── icon_offline_n@2x.png │ │ └── icon_offline_n@3x.png │ ├── list_collect_new.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── list_collect_new.png.svn-base │ │ │ ├── list_collect_new@2x.png.svn-base │ │ │ └── list_collect_new@3x.png.svn-base │ ├── list_icon_drop-2.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── list_icon_drop-2.png.svn-base │ │ │ ├── list_icon_drop-2@2x.png.svn-base │ │ │ └── list_icon_drop-2@3x.png.svn-base │ ├── list_icon_drop.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── list_icon_drop.png.svn-base │ │ │ │ ├── list_icon_drop@2x.png.svn-base │ │ │ │ └── list_icon_drop@3x.png.svn-base │ │ ├── list_icon_drop.png │ │ ├── list_icon_drop@2x.png │ │ └── list_icon_drop@3x.png │ ├── list_video_letv.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── list_video_letv.png.svn-base │ │ │ │ ├── list_video_letv@2x.png.svn-base │ │ │ │ └── list_video_letv@3x.png.svn-base │ │ └── list_video_letv.png │ ├── list_video_pptv.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── list_video_pptv.png.svn-base │ │ │ │ ├── list_video_pptv@2x.png.svn-base │ │ │ │ └── list_video_pptv@3x.png.svn-base │ │ └── list_video_pptv.png │ ├── list_video_sohu.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── list_video_sohu.png.svn-base │ │ │ │ ├── list_video_sohu@2x.png.svn-base │ │ │ │ └── list_video_sohu@3x.png.svn-base │ │ └── list_video_sohu.png │ ├── nav_btn_back_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── nav_btn_back_h.png.svn-base │ │ │ │ ├── nav_btn_back_h@2x.png.svn-base │ │ │ │ └── nav_btn_back_h@3x.png.svn-base │ │ ├── nav_btn_back_h.png │ │ ├── nav_btn_back_h@2x.png │ │ └── nav_btn_back_h@3x.png │ ├── text---right_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── text---right_h.png.svn-base │ │ │ │ ├── text---right_h@2x.png.svn-base │ │ │ │ └── text---right_h@3x.png.svn-base │ │ ├── text---right_h.png │ │ ├── text---right_h@2x.png │ │ └── text---right_h@3x.png │ ├── GuideView_Classify.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── GuideView_Classify.png.svn-base │ ├── GuideView_DownLoad.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── GuideView_DownLoad.png.svn-base │ ├── bg_search_black.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── bg_search_black@3x.png.svn-base │ ├── bg_video_number_d.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── bg_video_number_d.png.svn-base │ │ │ └── bg_video_number_d@3x.png.svn-base │ ├── bg_video_number_h.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── bg_video_number_h@3x.png.svn-base │ ├── bg_video_number_n.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── bg_video_number_n@3x.png.svn-base │ ├── bg_video_play50.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── bg_video_play50@3x.png.svn-base │ ├── bg_video_play80.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ └── bg_video_play80@3x.png.svn-base │ ├── btn_tv_arrow_right.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── btn_arrow_right.png.svn-base │ │ │ ├── btn_arrow_right@2x.png.svn-base │ │ │ ├── btn_arrow_right@3x.png.svn-base │ │ │ ├── btn_tv_arrow_right.png.svn-base │ │ │ ├── btn_tv_arrow_right@2x.png.svn-base │ │ │ └── btn_tv_arrow_right@3x.png.svn-base │ ├── list_video_aiqiyi.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── list_video_aiqiyi.png.svn-base │ │ │ ├── list_video_aiqiyi@2x.png.svn-base │ │ │ └── list_video_aiqiyi@3x.png.svn-base │ ├── bg_video_number_n_n_9.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── bg_video_number_n_n_9.png.svn-base │ │ │ └── bg_video_number_n_n_9@3x.png.svn-base │ ├── btn_me_carry-out_h_9.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── btn_me_carry-out_h_9.png.svn-base │ │ │ └── btn_me_carry-out_h_9@3x.png.svn-base │ ├── btn_me_carry-out_n_9.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── btn_me_carry-out_n_9.png.svn-base │ │ │ └── btn_me_carry-out_n_9@3x.png.svn-base │ ├── icon_news_collect_h.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── icon_news_collect_h.png.svn-base │ │ │ ├── icon_news_collect_h@2x.png.svn-base │ │ │ └── icon_news_collect_h@3x.png.svn-base │ ├── icon_news_collect_h_g.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── icon_news_collect_h_g.png.svn-base │ │ │ ├── icon_news_collect_h_g@2x.png.svn-base │ │ │ └── icon_news_collect_h_g@3x.png.svn-base │ ├── icon_news_collect_n.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── icon_news_collect_n.png.svn-base │ │ │ ├── icon_news_collect_n@2x.png.svn-base │ │ │ └── icon_news_collect_n@3x.png.svn-base │ ├── icon_news_collect_n_g.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── icon_news_collect_n_g.png.svn-base │ │ │ ├── icon_news_collect_n_g@2x.png.svn-base │ │ │ └── icon_news_collect_n_g@3x.png.svn-base │ ├── list_collect_more_h.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── list_collect_more_h.png.svn-base │ │ │ ├── list_collect_more_h@2x.png.svn-base │ │ │ └── list_collect_more_h@3x.png.svn-base │ ├── list_collect_more_n.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── list_collect_more_n.png.svn-base │ │ │ ├── list_collect_more_n@2x.png.svn-base │ │ │ └── list_collect_more_n@3x.png.svn-base │ ├── text---right_seekTV.imageset │ │ └── .svn │ │ │ └── prop-base │ │ │ ├── text---right_seekTV.png.svn-base │ │ │ ├── text---right_seekTV@2x.png.svn-base │ │ │ └── text---right_seekTV@3x.png.svn-base │ └── bg_video_number_more_hh_9.imageset │ │ └── .svn │ │ └── prop-base │ │ └── bg_video_number_more_hh_9@3x.png.svn-base ├── videoPlayer │ ├── Contents.json │ ├── bg_blue.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── bg_blue.png.svn-base │ │ └── bg_blue.png │ ├── bg_gray.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ └── bg_gray.png.svn-base │ │ └── bg_gray.png │ ├── ic_pause.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_pause.png.svn-base │ │ │ │ ├── ic_pause@2x.png.svn-base │ │ │ │ └── ic_pause@3x.png.svn-base │ │ ├── ic_pause.png │ │ ├── ic_pause@2x.png │ │ └── ic_pause@3x.png │ ├── ic_play.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_play.png.svn-base │ │ │ │ ├── ic_play@2x.png.svn-base │ │ │ │ └── ic_play@3x.png.svn-base │ │ ├── ic_play.png │ │ ├── ic_play@2x.png │ │ └── ic_play@3x.png │ ├── icon_kai.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_kai.png.svn-base │ │ │ │ ├── icon_kai@2x.png.svn-base │ │ │ │ └── icon_kai@3x.png.svn-base │ │ ├── icon_kai.png │ │ ├── icon_kai@2x.png │ │ └── icon_kai@3x.png │ ├── icon_suo.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_suo.png.svn-base │ │ │ │ ├── icon_suo@2x.png.svn-base │ │ │ │ └── icon_suo@3x.png.svn-base │ │ ├── icon_suo.png │ │ ├── icon_suo@2x.png │ │ └── icon_suo@3x.png │ ├── btn_drag-0.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_drag-0.png.svn-base │ │ │ │ ├── btn_drag-@2x.png.svn-base │ │ │ │ └── btn_drag-@3x.png.svn-base │ │ ├── btn_drag-0.png │ │ ├── btn_drag-@2x.png │ │ └── btn_drag-@3x.png │ ├── ic_share_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_share_n.png.svn-base │ │ │ │ ├── ic_share_n@2x.png.svn-base │ │ │ │ └── ic_share_n@3x.png.svn-base │ │ ├── ic_share_n.png │ │ ├── ic_share_n@2x.png │ │ └── ic_share_n@3x.png │ ├── icon_kai_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_kai_n.png.svn-base │ │ │ │ ├── icon_kai_n@2x.png.svn-base │ │ │ │ └── icon_kai_n@3x.png.svn-base │ │ ├── icon_kai_n.png │ │ ├── icon_kai_n@2x.png │ │ └── icon_kai_n@3x.png │ ├── icon_play.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_play.png.svn-base │ │ │ │ ├── icon_play@2x.png.svn-base │ │ │ │ └── icon_play@3x.png.svn-base │ │ ├── icon_play.png │ │ ├── icon_play@2x.png │ │ └── icon_play@3x.png │ ├── icon_suo_h.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_suo_h.png.svn-base │ │ │ │ ├── icon_suo_h@2x.png.svn-base │ │ │ │ └── icon_suo_h@3x.png.svn-base │ │ ├── icon_suo_h.png │ │ ├── icon_suo_h@2x.png │ │ └── icon_suo_h@3x.png │ ├── icon_report_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_report_n.png.svn-base │ │ │ │ ├── icon_report_n@2x.png.svn-base │ │ │ │ └── icon_report_n@3x.png.svn-base │ │ ├── icon_report_n.png │ │ ├── icon_report_n@2x.png │ │ └── icon_report_n@3x.png │ ├── icon_timeout.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_timeout.png.svn-base │ │ │ │ ├── icon_timeout@2x.png.svn-base │ │ │ │ └── icon_timeout@3x.png.svn-base │ │ ├── icon_timeout.png │ │ ├── icon_timeout@2x.png │ │ └── icon_timeout@3x.png │ ├── btn_downlaod_no.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── btn_downlaod_no.png.svn-base │ │ │ │ ├── btn_downlaod_no@2x.png.svn-base │ │ │ │ └── btn_downlaod_no@3x.png.svn-base │ │ └── btn_downlaod_no.png │ ├── ic_share_topic.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── ic_share_topic.png.svn-base │ │ │ │ ├── ic_share_topic@2x.png.svn-base │ │ │ │ └── ic_share_topic@3x.png.svn-base │ │ └── ic_share_topic.png │ ├── icon_quantity_n.imageset │ │ ├── .svn │ │ │ └── prop-base │ │ │ │ ├── icon_quantity_n.png.svn-base │ │ │ │ ├── icon_quantity_n@2x.png.svn-base │ │ │ │ └── icon_quantity_n@3x.png.svn-base │ │ └── icon_quantity_n.png │ ├── ic_close_w.imageset │ │ ├── ic_close_w.png │ │ ├── ic_close_w@2x.png │ │ └── ic_close_w@3x.png │ └── icon_play_point.imageset │ │ └── icon_play_point.png └── VKVideoPlayer │ └── imgs │ ├── VKVideoPlayer_next.png │ ├── VKVideoPlayer_play.png │ ├── VKVideoPlayer_close.png │ ├── VKVideoPlayer_cross.png │ ├── VKVideoPlayer_pause.png │ ├── VKVideoPlayer_rewind.png │ ├── VKVideoPlayer_close@2x.png │ ├── VKVideoPlayer_cross@2x.png │ ├── VKVideoPlayer_next@2x.png │ ├── VKVideoPlayer_pause@2x.png │ ├── VKVideoPlayer_pause_big.png │ ├── VKVideoPlayer_play@2x.png │ ├── VKVideoPlayer_play_big.png │ ├── VKVideoPlayer_rewind@2x.png │ ├── VKVideoPlayer_zoom_in.png │ ├── VKVideoPlayer_zoom_out.png │ ├── VKVideoPlayer_play_big@2x.png │ ├── VKVideoPlayer_zoom_in@2x.png │ ├── VKVideoPlayer_zoom_out@2x.png │ └── VKVideoPlayer_pause_big@2x.png ├── iOS核心动画集 └── iOS核心动画集 │ └── Assets.xcassets │ ├── Contents.json │ └── alili.imageset │ └── 阿狸头像.png ├── 09-多图片多线程下载 └── 09-多图片多线程下载 │ └── Assets.xcassets │ ├── Contents.json │ └── 123.imageset │ └── 123.jpg ├── MarqueeUPDown └── MarqueeUPDown │ └── Assets.xcassets │ └── Contents.json ├── 07-CoreSportlightDemo └── CoreSportlightDemo │ └── Assets.xcassets │ └── Contents.json ├── UseOfCAGradientLayer └── UseOfCAGradientLayer │ └── Assets.xcassets │ └── Contents.json └── 06-UITableViewCell的展开与收缩 └── UITableViewCell的展开与收缩 └── SreenShot └── unfold.gif /SwiftBooks/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/FMDB/FMDB.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /01-网络检测/podfile: -------------------------------------------------------------------------------- 1 | pod "AFNetworking", "~> 2.0" 2 | pod 'Reachability', '~> 3.1.0' 3 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/FMDB/FMDB.xcconfig: -------------------------------------------------------------------------------- 1 | FMDB_OTHER_LDFLAGS = -l"sqlite3" -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Toast/UIView+Toast.h: -------------------------------------------------------------------------------- 1 | ../../../Toast/Toast/Toast/UIView+Toast.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Toast/Toast.xcconfig: -------------------------------------------------------------------------------- 1 | TOAST_OTHER_LDFLAGS = -framework "QuartzCore" -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- 1 | SDWEBIMAGE_OTHER_LDFLAGS = -framework "ImageIO" -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Toast/Toast-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | MBPROGRESSHUD_OTHER_LDFLAGS = -framework "CoreGraphics" -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- 1 | MASONRY_OTHER_LDFLAGS = -framework "Foundation" -framework "UIKit" -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /iOS核心动画集/iOS核心动画集/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /09-多图片多线程下载/09-多图片多线程下载/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /MarqueeUPDown/MarqueeUPDown/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/.svn/prop-base/new.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new.imageset/new.png -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Target Support Files/Pods-Reachability/Pods-Reachability.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_REACHABILITY_OTHER_LDFLAGS = -framework "SystemConfiguration" -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_up.imageset/.svn/prop-base/btn_up.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian.imageset/.svn/prop-base/dian.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian.imageset/.svn/prop-base/dian@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian.imageset/.svn/prop-base/dian@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian.imageset/dian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/dian.imageset/dian.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/left.imageset/.svn/prop-base/left.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/left.imageset/.svn/prop-base/left@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/left.imageset/.svn/prop-base/left@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/left.imageset/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/left.imageset/left.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/.svn/prop-base/new@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/.svn/prop-base/new@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new_tv.imageset/.svn/prop-base/new_tv.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_1.imageset/.svn/prop-base/no_1.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_1.imageset/.svn/prop-base/no_1@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_1.imageset/.svn/prop-base/no_1@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_1.imageset/no_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_1.imageset/no_1.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_2.imageset/.svn/prop-base/no_2.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_2.imageset/.svn/prop-base/no_2@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_2.imageset/.svn/prop-base/no_2@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_2.imageset/no_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_2.imageset/no_2.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_3.imageset/.svn/prop-base/no_3.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_3.imageset/.svn/prop-base/no_3@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_3.imageset/.svn/prop-base/no_3@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_3.imageset/no_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_3.imageset/no_3.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_4.imageset/.svn/prop-base/no_4.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_4.imageset/.svn/prop-base/no_4@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_4.imageset/.svn/prop-base/no_4@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_4.imageset/no_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_4.imageset/no_4.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/play.imageset/.svn/prop-base/play.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/play.imageset/.svn/prop-base/play@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/play.imageset/.svn/prop-base/play@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/play.imageset/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/play.imageset/play.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/right.imageset/.svn/prop-base/right.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/time.imageset/.svn/prop-base/time.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/time.imageset/.svn/prop-base/time@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/time.imageset/.svn/prop-base/time@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/time.imageset/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/time.imageset/time.png -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /07-CoreSportlightDemo/CoreSportlightDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_up.imageset/.svn/prop-base/btn_up@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_up.imageset/.svn/prop-base/btn_up@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian.imageset/dian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/dian.imageset/dian@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian.imageset/dian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/dian.imageset/dian@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian_ad.imageset/.svn/prop-base/dian_ad.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian_ad.imageset/.svn/prop-base/dian_ad@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian_ad.imageset/.svn/prop-base/dian_ad@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_blue.imageset/.svn/prop-base/ic_blue.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_blue.imageset/.svn/prop-base/ic_blue@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_blue.imageset/.svn/prop-base/ic_blue@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_check.imageset/.svn/prop-base/ic_check.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_gray.imageset/.svn/prop-base/ic_gray.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_gray.imageset/.svn/prop-base/ic_gray@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_gray.imageset/.svn/prop-base/ic_gray@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/img_hot.imageset/.svn/prop-base/img_hot.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/img_hot.imageset/.svn/prop-base/img_hot@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/img_hot.imageset/.svn/prop-base/img_hot@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/left.imageset/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/left.imageset/left@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/left.imageset/left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/left.imageset/left@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new.imageset/new@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/new@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new.imageset/new@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new_tv.imageset/.svn/prop-base/new_tv@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new_tv.imageset/.svn/prop-base/new_tv@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_1.imageset/no_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_1.imageset/no_1@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_1.imageset/no_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_1.imageset/no_1@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_2.imageset/no_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_2.imageset/no_2@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_2.imageset/no_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_2.imageset/no_2@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_3.imageset/no_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_3.imageset/no_3@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_3.imageset/no_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_3.imageset/no_3@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_4.imageset/no_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_4.imageset/no_4@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/no_4.imageset/no_4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/no_4.imageset/no_4@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/play.imageset/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/play.imageset/play@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/play.imageset/play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/play.imageset/play@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/refresh.imageset/.svn/prop-base/refresh.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/refresh.imageset/.svn/prop-base/refresh@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/refresh.imageset/.svn/prop-base/refresh@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/right.imageset/.svn/prop-base/right@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/right.imageset/.svn/prop-base/right@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/right.imageset/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/right.imageset/right.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_x.imageset/.svn/prop-base/search_x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/time.imageset/time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/time.imageset/time@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/time.imageset/time@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/time.imageset/time@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/bg_blue.imageset/.svn/prop-base/bg_blue.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/bg_gray.imageset/.svn/prop-base/bg_gray.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_pause.imageset/.svn/prop-base/ic_pause.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_play.imageset/.svn/prop-base/ic_play.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai.imageset/.svn/prop-base/icon_kai.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo.imageset/.svn/prop-base/icon_suo.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /UseOfCAGradientLayer/UseOfCAGradientLayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_search.imageset/.svn/prop-base/bg_search@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_drag.imageset/.svn/prop-base/btn_drag@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/.svn/prop-base/btn_play_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/.svn/prop-base/btn_play_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_up.imageset/btn_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_up.imageset/btn_up.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_h.imageset/.svn/prop-base/download_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_n.imageset/.svn/prop-base/download_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_Choose_h.imageset/.svn/prop-base/ic_Choose_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_Choose_n.imageset/.svn/prop-base/ic_Choose_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_check.imageset/.svn/prop-base/ic_check@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_check.imageset/.svn/prop-base/ic_check@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_play.imageset/.svn/prop-base/icon_play.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_play.imageset/.svn/prop-base/icon_play@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_play.imageset/.svn/prop-base/icon_play@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_time.imageset/.svn/prop-base/icon_time.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_time.imageset/.svn/prop-base/icon_time@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_time.imageset/.svn/prop-base/icon_time@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_search.imageset/.svn/prop-base/nav_search.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new_tv.imageset/new_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new_tv.imageset/new_tv.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/right.imageset/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/right.imageset/right@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/right.imageset/right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/right.imageset/right@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_hot.imageset/.svn/prop-base/search_hot.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_time.imageset/.svn/prop-base/search_time.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_x.imageset/.svn/prop-base/search_x@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_x.imageset/.svn/prop-base/search_x@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_drag-0.imageset/.svn/prop-base/btn_drag-0.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_pause.imageset/.svn/prop-base/ic_pause@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_pause.imageset/.svn/prop-base/ic_pause@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_play.imageset/.svn/prop-base/ic_play@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_play.imageset/.svn/prop-base/ic_play@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_n.imageset/.svn/prop-base/ic_share_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai.imageset/.svn/prop-base/icon_kai@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai.imageset/.svn/prop-base/icon_kai@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai_n.imageset/.svn/prop-base/icon_kai_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play.imageset/.svn/prop-base/icon_play.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play.imageset/.svn/prop-base/icon_play@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play.imageset/.svn/prop-base/icon_play@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo.imageset/.svn/prop-base/icon_suo@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo.imageset/.svn/prop-base/icon_suo@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo_h.imageset/.svn/prop-base/icon_suo_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /01-网络检测/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_Set.imageset/.svn/prop-base/GuideView_Set.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/.svn/prop-base/btn_play_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/.svn/prop-base/btn_play_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/.svn/prop-base/btn_play_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/.svn/prop-base/btn_play_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/.svn/prop-base/btn_timeout_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_up.imageset/btn_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_up.imageset/btn_up@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_up.imageset/btn_up@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_up.imageset/btn_up@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/.svn/prop-base/btn_wating_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/.svn/prop-base/btn_wating_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/.svn/prop-base/btn_wating_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian_ad.imageset/dian_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/dian_ad.imageset/dian_ad.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_h.imageset/.svn/prop-base/download_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_h.imageset/.svn/prop-base/download_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_n.imageset/.svn/prop-base/download_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_n.imageset/.svn/prop-base/download_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_blue.imageset/ic_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_blue.imageset/ic_blue.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_check.imageset/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_check.imageset/ic_check.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_gray.imageset/ic_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_gray.imageset/ic_gray.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/.svn/prop-base/icon_playblue.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/.svn/prop-base/icon_recycle.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/.svn/prop-base/icon_recycle@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/.svn/prop-base/icon_recycle@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/.svn/prop-base/icon_score_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/.svn/prop-base/icon_score_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/.svn/prop-base/icon_score_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/.svn/prop-base/icon_score_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/.svn/prop-base/icon_score_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/.svn/prop-base/icon_score_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/.svn/prop-base/icon_share_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/.svn/prop-base/icon_share_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/.svn/prop-base/icon_share_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/.svn/prop-base/icon_share_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/.svn/prop-base/icon_share_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/.svn/prop-base/icon_share_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/.svn/prop-base/icon_offline_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/.svn/prop-base/icon_offline_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/.svn/prop-base/icon_timeout.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/.svn/prop-base/icon_timeout@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/.svn/prop-base/icon_timeout@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/.svn/prop-base/icon_voice_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/.svn/prop-base/icon_voice_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/.svn/prop-base/icon_voice_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/.svn/prop-base/icon_voice_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/.svn/prop-base/icon_voice_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/.svn/prop-base/icon_voice_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/img_hot.imageset/img_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/img_hot.imageset/img_hot.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/.svn/prop-base/list_video_qq.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_search.imageset/.svn/prop-base/nav_search@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_search.imageset/.svn/prop-base/nav_search@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new_tv.imageset/new_tv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new_tv.imageset/new_tv@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new_tv.imageset/new_tv@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new_tv.imageset/new_tv@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/.svn/prop-base/nopic_190x210.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/refresh.imageset/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/refresh.imageset/refresh.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_hot.imageset/.svn/prop-base/search_hot@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_hot.imageset/.svn/prop-base/search_hot@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_time.imageset/.svn/prop-base/search_time@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_time.imageset/.svn/prop-base/search_time@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_x.imageset/search_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_x.imageset/search_x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right.imageset/.svn/prop-base/text---right.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right.imageset/.svn/prop-base/text---right@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right.imageset/.svn/prop-base/text---right@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_next.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/bg_blue.imageset/bg_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/bg_blue.imageset/bg_blue.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/bg_gray.imageset/bg_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/bg_gray.imageset/bg_gray.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_drag-0.imageset/.svn/prop-base/btn_drag-@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_drag-0.imageset/.svn/prop-base/btn_drag-@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_play.imageset/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_play.imageset/ic_play.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_n.imageset/.svn/prop-base/ic_share_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_n.imageset/.svn/prop-base/ic_share_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai_n.imageset/.svn/prop-base/icon_kai_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai_n.imageset/.svn/prop-base/icon_kai_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_report_n.imageset/.svn/prop-base/icon_report_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo_h.imageset/.svn/prop-base/icon_suo_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo_h.imageset/.svn/prop-base/icon_suo_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_timeout.imageset/.svn/prop-base/icon_timeout.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Swift_Weather/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_Search.imageset/.svn/prop-base/GuideView_Search.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_SeekTV.imageset/.svn/prop-base/GuideView_SeekTV.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/.svn/prop-base/bg_btn_video_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/.svn/prop-base/bg_btn_video_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/.svn/prop-base/bg_btn_video_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/.svn/prop-base/bg_btn_video_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/.svn/prop-base/bg_btn_video_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/.svn/prop-base/bg_btn_video_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/.svn/prop-base/btn_downlaod_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/.svn/prop-base/btn_downlaod_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/.svn/prop-base/btn_downlaod_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_no.imageset/.svn/prop-base/btn_downlaod_no.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_bar_h_9.imageset/.svn/prop-base/btn_me_bar_h_9.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_bar_n_9.imageset/.svn/prop-base/btn_me_bar_n_9.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_circle_ok.imageset/.svn/prop-base/btn_me_circle_ok.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_nav_search_h.imageset/.svn/prop-base/btn_nav_search_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_nav_search_n.imageset/.svn/prop-base/btn_nav_search_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/.svn/prop-base/btn_timeout_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/.svn/prop-base/btn_timeout_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian_ad.imageset/dian_ad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/dian_ad.imageset/dian_ad@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/dian_ad.imageset/dian_ad@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/dian_ad.imageset/dian_ad@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/.svn/prop-base/hopper_ic_down.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/.svn/prop-base/hopper_ic_down@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/.svn/prop-base/hopper_ic_down@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_item_bg_9.imageset/.svn/prop-base/hopper_item_bg_9.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_blue.imageset/ic_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_blue.imageset/ic_blue@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_blue.imageset/ic_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_blue.imageset/ic_blue@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_gray.imageset/ic_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_gray.imageset/ic_gray@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_gray.imageset/ic_gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_gray.imageset/ic_gray@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/.svn/prop-base/ic_no-comments.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/.svn/prop-base/ic_no-comments@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/.svn/prop-base/ic_no-comments@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_attention_n.imageset/.svn/prop-base/icon_attention_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h-1.imageset/.svn/prop-base/icon_collect_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/.svn/prop-base/icon_collect_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/.svn/prop-base/icon_collect_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/.svn/prop-base/icon_collect_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n-1.imageset/.svn/prop-base/icon_collect_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/.svn/prop-base/icon_collect_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/.svn/prop-base/icon_collect_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/.svn/prop-base/icon_collect_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_h.imageset/.svn/prop-base/icon_download_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_n.imageset/.svn/prop-base/icon_download_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/.svn/prop-base/icon_offline_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/.svn/prop-base/icon_offline_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/.svn/prop-base/icon_offline_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/.svn/prop-base/icon_offline_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/.svn/prop-base/icon_offline_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/.svn/prop-base/icon_offline_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_play.imageset/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_play.imageset/icon_play.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/.svn/prop-base/icon_playblue@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/.svn/prop-base/icon_playblue@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/.svn/prop-base/icon_offline_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/.svn/prop-base/icon_offline_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/.svn/prop-base/icon_offline_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/.svn/prop-base/icon_offline_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_time.imageset/icon_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_time.imageset/icon_time.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/img_hot.imageset/img_hot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/img_hot.imageset/img_hot@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/img_hot.imageset/img_hot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/img_hot.imageset/img_hot@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_new.imageset/.svn/prop-base/list_collect_new.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop-2.imageset/.svn/prop-base/list_icon_drop-2.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/.svn/prop-base/list_icon_drop.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/.svn/prop-base/list_icon_drop@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/.svn/prop-base/list_icon_drop@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_letv.imageset/.svn/prop-base/list_video_letv.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_pptv.imageset/.svn/prop-base/list_video_pptv.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/.svn/prop-base/list_video_qq@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/.svn/prop-base/list_video_qq@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_sohu.imageset/.svn/prop-base/list_video_sohu.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/.svn/prop-base/nav_btn_back_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/.svn/prop-base/nav_btn_back_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/.svn/prop-base/nav_btn_back_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/.svn/prop-base/nopic_190x210@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/.svn/prop-base/nopic_190x210@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/refresh.imageset/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/refresh.imageset/refresh@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/refresh.imageset/refresh@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/refresh.imageset/refresh@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_h.imageset/.svn/prop-base/text---right_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_h.imageset/.svn/prop-base/text---right_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_h.imageset/.svn/prop-base/text---right_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_close.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_cross.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_rewind.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_downlaod_no.imageset/.svn/prop-base/btn_downlaod_no.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_pause.imageset/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_pause.imageset/ic_pause.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_play.imageset/ic_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_play.imageset/ic_play@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_play.imageset/ic_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_play.imageset/ic_play@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_topic.imageset/.svn/prop-base/ic_share_topic.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_topic.imageset/.svn/prop-base/ic_share_topic@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_topic.imageset/.svn/prop-base/ic_share_topic@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai.imageset/icon_kai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_kai.imageset/icon_kai.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_quantity_n.imageset/.svn/prop-base/icon_quantity_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_report_n.imageset/.svn/prop-base/icon_report_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_report_n.imageset/.svn/prop-base/icon_report_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo.imageset/icon_suo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_suo.imageset/icon_suo.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_timeout.imageset/.svn/prop-base/icon_timeout@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_timeout.imageset/.svn/prop-base/icon_timeout@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /iOS核心动画集/iOS核心动画集/Assets.xcassets/alili.imageset/阿狸头像.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/iOS核心动画集/iOS核心动画集/Assets.xcassets/alili.imageset/阿狸头像.png -------------------------------------------------------------------------------- /09-多图片多线程下载/09-多图片多线程下载/Assets.xcassets/123.imageset/123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/09-多图片多线程下载/09-多图片多线程下载/Assets.xcassets/123.imageset/123.jpg -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_Classify.imageset/.svn/prop-base/GuideView_Classify.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_DownLoad.imageset/.svn/prop-base/GuideView_DownLoad.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_SeekTV.imageset/.svn/prop-base/GuideView_SeekTV@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_SeekTV.imageset/.svn/prop-base/GuideView_SeekTV@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_search.imageset/bg_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_search.imageset/bg_search@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_search_black.imageset/.svn/prop-base/bg_search_black@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_d.imageset/.svn/prop-base/bg_video_number_d.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_d.imageset/.svn/prop-base/bg_video_number_d@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_h.imageset/.svn/prop-base/bg_video_number_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_n.imageset/.svn/prop-base/bg_video_number_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_play50.imageset/.svn/prop-base/bg_video_play50@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_play80.imageset/.svn/prop-base/bg_video_play80@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_no.imageset/.svn/prop-base/btn_downlaod_no@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_no.imageset/.svn/prop-base/btn_downlaod_no@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_drag.imageset/btn_drag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_drag.imageset/btn_drag@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_circle_ok.imageset/.svn/prop-base/btn_me_circle_ok@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_circle_ok.imageset/.svn/prop-base/btn_me_circle_ok@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_nav_search_h.imageset/.svn/prop-base/btn_nav_search_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_nav_search_h.imageset/.svn/prop-base/btn_nav_search_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_nav_search_n.imageset/.svn/prop-base/btn_nav_search_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_nav_search_n.imageset/.svn/prop-base/btn_nav_search_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/btn_play_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/btn_play_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/btn_play_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/btn_play_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_tv_arrow_right.imageset/.svn/prop-base/btn_arrow_right.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_tv_arrow_right.imageset/.svn/prop-base/btn_arrow_right@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_tv_arrow_right.imageset/.svn/prop-base/btn_arrow_right@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_tv_arrow_right.imageset/.svn/prop-base/btn_tv_arrow_right.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_h.imageset/download_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/download_h.imageset/download_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_n.imageset/download_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/download_n.imageset/download_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_check.imageset/ic_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_check.imageset/ic_check@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_check.imageset/ic_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_check.imageset/ic_check@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_attention_n.imageset/.svn/prop-base/icon_attention_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_attention_n.imageset/.svn/prop-base/icon_attention_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h-1.imageset/.svn/prop-base/icon_collect_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h-1.imageset/.svn/prop-base/icon_collect_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n-1.imageset/.svn/prop-base/icon_collect_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n-1.imageset/.svn/prop-base/icon_collect_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_h.imageset/.svn/prop-base/icon_download_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_h.imageset/.svn/prop-base/icon_download_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_n.imageset/.svn/prop-base/icon_download_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_n.imageset/.svn/prop-base/icon_download_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_play.imageset/icon_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_play.imageset/icon_play@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_play.imageset/icon_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_play.imageset/icon_play@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_time.imageset/icon_time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_time.imageset/icon_time@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_time.imageset/icon_time@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_time.imageset/icon_time@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_new.imageset/.svn/prop-base/list_collect_new@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_new.imageset/.svn/prop-base/list_collect_new@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop-2.imageset/.svn/prop-base/list_icon_drop-2@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop-2.imageset/.svn/prop-base/list_icon_drop-2@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_aiqiyi.imageset/.svn/prop-base/list_video_aiqiyi.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_aiqiyi.imageset/.svn/prop-base/list_video_aiqiyi@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_aiqiyi.imageset/.svn/prop-base/list_video_aiqiyi@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_letv.imageset/.svn/prop-base/list_video_letv@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_letv.imageset/.svn/prop-base/list_video_letv@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_pptv.imageset/.svn/prop-base/list_video_pptv@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_pptv.imageset/.svn/prop-base/list_video_pptv@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_sohu.imageset/.svn/prop-base/list_video_sohu@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_sohu.imageset/.svn/prop-base/list_video_sohu@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_search.imageset/nav_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nav_search.imageset/nav_search.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_hot.imageset/search_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_hot.imageset/search_hot.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_x.imageset/search_x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_x.imageset/search_x@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_x.imageset/search_x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_x.imageset/search_x@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_close@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_cross@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_cross@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_next@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause_big.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play_big.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_rewind@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_rewind@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_in.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_out.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_downlaod_no.imageset/.svn/prop-base/btn_downlaod_no@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_downlaod_no.imageset/.svn/prop-base/btn_downlaod_no@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_drag-0.imageset/btn_drag-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/btn_drag-0.imageset/btn_drag-0.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_close_w.imageset/ic_close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_close_w.imageset/ic_close_w.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_pause.imageset/ic_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_pause.imageset/ic_pause@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_pause.imageset/ic_pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_pause.imageset/ic_pause@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_n.imageset/ic_share_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_share_n.imageset/ic_share_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai.imageset/icon_kai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_kai.imageset/icon_kai@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai.imageset/icon_kai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_kai.imageset/icon_kai@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai_n.imageset/icon_kai_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_kai_n.imageset/icon_kai_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play.imageset/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_play.imageset/icon_play.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_quantity_n.imageset/.svn/prop-base/icon_quantity_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_quantity_n.imageset/.svn/prop-base/icon_quantity_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo.imageset/icon_suo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_suo.imageset/icon_suo@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo.imageset/icon_suo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_suo.imageset/icon_suo@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo_h.imageset/icon_suo_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_suo_h.imageset/icon_suo_h.png -------------------------------------------------------------------------------- /01-网络检测/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /01-网络检测/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/FMDB/FMDB.modulemap: -------------------------------------------------------------------------------- 1 | framework module FMDB { 2 | umbrella header "FMDB-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_n_n_9.imageset/.svn/prop-base/bg_video_number_n_n_9.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_carry-out_h_9.imageset/.svn/prop-base/btn_me_carry-out_h_9.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_carry-out_n_9.imageset/.svn/prop-base/btn_me_carry-out_n_9.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/btn_play_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/btn_play_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/btn_play_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_play_h.imageset/btn_play_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/btn_play_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/btn_play_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/btn_play_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_play_n.imageset/btn_play_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_tv_arrow_right.imageset/.svn/prop-base/btn_tv_arrow_right@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_tv_arrow_right.imageset/.svn/prop-base/btn_tv_arrow_right@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_h.imageset/download_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/download_h.imageset/download_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_h.imageset/download_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/download_h.imageset/download_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_n.imageset/download_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/download_n.imageset/download_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/download_n.imageset/download_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/download_n.imageset/download_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_Choose_h.imageset/ic_Choose_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_Choose_h.imageset/ic_Choose_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_Choose_n.imageset/ic_Choose_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_Choose_n.imageset/ic_Choose_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_h.imageset/.svn/prop-base/icon_news_collect_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_h.imageset/.svn/prop-base/icon_news_collect_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_h.imageset/.svn/prop-base/icon_news_collect_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_h_g.imageset/.svn/prop-base/icon_news_collect_h_g.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_n.imageset/.svn/prop-base/icon_news_collect_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_n.imageset/.svn/prop-base/icon_news_collect_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_n.imageset/.svn/prop-base/icon_news_collect_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_n_g.imageset/.svn/prop-base/icon_news_collect_n_g.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_more_h.imageset/.svn/prop-base/list_collect_more_h.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_more_h.imageset/.svn/prop-base/list_collect_more_h@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_more_h.imageset/.svn/prop-base/list_collect_more_h@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_more_n.imageset/.svn/prop-base/list_collect_more_n.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_more_n.imageset/.svn/prop-base/list_collect_more_n@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_collect_more_n.imageset/.svn/prop-base/list_collect_more_n@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_search.imageset/nav_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nav_search.imageset/nav_search@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_search.imageset/nav_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nav_search.imageset/nav_search@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_hot.imageset/search_hot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_hot.imageset/search_hot@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_hot.imageset/search_hot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_hot.imageset/search_hot@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_time.imageset/search_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_time.imageset/search_time.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_seekTV.imageset/.svn/prop-base/text---right_seekTV.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_seekTV.imageset/.svn/prop-base/text---right_seekTV@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_seekTV.imageset/.svn/prop-base/text---right_seekTV@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_play_big@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_in@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_in@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_out@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_zoom_out@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_drag-0.imageset/btn_drag-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/btn_drag-0.imageset/btn_drag-@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_drag-0.imageset/btn_drag-@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/btn_drag-0.imageset/btn_drag-@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play.imageset/icon_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_play.imageset/icon_play@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play.imageset/icon_play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_play.imageset/icon_play@3x.png -------------------------------------------------------------------------------- /01-网络检测/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDKeyedHeightCache.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDKeyedHeightCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDTemplateLayoutCell.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/SwiftBooks/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Toast/Toast.modulemap: -------------------------------------------------------------------------------- 1 | framework module Toast { 2 | umbrella header "Toast-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/GuideView_Set.imageset/GuideView_Set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/GuideView_Set.imageset/GuideView_Set.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_n_n_9.imageset/.svn/prop-base/bg_video_number_n_n_9@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_carry-out_h_9.imageset/.svn/prop-base/btn_me_carry-out_h_9@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_carry-out_n_9.imageset/.svn/prop-base/btn_me_carry-out_n_9@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/btn_timeout_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/btn_timeout_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/btn_wating_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/btn_wating_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_h_g.imageset/.svn/prop-base/icon_news_collect_h_g@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_h_g.imageset/.svn/prop-base/icon_news_collect_h_g@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_n_g.imageset/.svn/prop-base/icon_news_collect_n_g@2x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_news_collect_n_g.imageset/.svn/prop-base/icon_news_collect_n_g@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/icon_playblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/icon_playblue.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/icon_recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/icon_recycle.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/icon_score_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/icon_score_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/icon_score_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/icon_score_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/icon_share_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/icon_share_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/icon_share_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/icon_share_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/icon_offline_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/icon_offline_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/icon_offline_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/icon_offline_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/icon_timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/icon_timeout.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/icon_voice_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/icon_voice_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/icon_voice_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/icon_voice_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/list_video_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/list_video_qq.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/nopic_190x210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/nopic_190x210.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_time.imageset/search_time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_time.imageset/search_time@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/search_time.imageset/search_time@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/search_time.imageset/search_time@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right.imageset/text---right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/text---right.imageset/text---right.png -------------------------------------------------------------------------------- /TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/VKVideoPlayer/imgs/VKVideoPlayer_pause_big@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_close_w.imageset/ic_close_w@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_close_w.imageset/ic_close_w@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_close_w.imageset/ic_close_w@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_close_w.imageset/ic_close_w@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_n.imageset/ic_share_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_share_n.imageset/ic_share_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_n.imageset/ic_share_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_share_n.imageset/ic_share_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai_n.imageset/icon_kai_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_kai_n.imageset/icon_kai_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_kai_n.imageset/icon_kai_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_kai_n.imageset/icon_kai_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo_h.imageset/icon_suo_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_suo_h.imageset/icon_suo_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_suo_h.imageset/icon_suo_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_suo_h.imageset/icon_suo_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_timeout.imageset/icon_timeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_timeout.imageset/icon_timeout.png -------------------------------------------------------------------------------- /06-UITableViewCell的展开与收缩/UITableViewCell的展开与收缩/SreenShot/unfold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/06-UITableViewCell的展开与收缩/UITableViewCell的展开与收缩/SreenShot/unfold.gif -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDIndexPathHeightCache.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDIndexPathHeightCache.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FMDB : NSObject 3 | @end 4 | @implementation PodsDummy_FMDB 5 | @end 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/bg_btn_video_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/bg_btn_video_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/bg_btn_video_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/bg_btn_video_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/btn_downlaod_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/btn_downlaod_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_bar_h_9.imageset/btn_me_bar_h_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_me_bar_h_9.imageset/btn_me_bar_h_9.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_me_bar_n_9.imageset/btn_me_bar_n_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_me_bar_n_9.imageset/btn_me_bar_n_9.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/btn_wating_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/btn_wating_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/btn_wating_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_wating_n.imageset/btn_wating_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/hopper_ic_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/hopper_ic_down.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/ic_no-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/ic_no-comments.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/icon_collect_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/icon_collect_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/icon_collect_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/icon_collect_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/icon_offline_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/icon_offline_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/icon_offline_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/icon_offline_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/icon_recycle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/icon_recycle@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/icon_recycle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_recycle.imageset/icon_recycle@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/icon_score_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/icon_score_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/icon_score_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_score_h.imageset/icon_score_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/icon_score_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/icon_score_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/icon_score_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_score_n.imageset/icon_score_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/icon_share_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/icon_share_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/icon_share_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_share_h.imageset/icon_share_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/icon_share_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/icon_share_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/icon_share_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_share_n.imageset/icon_share_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/icon_timeout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/icon_timeout@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/icon_timeout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_timeout.imageset/icon_timeout@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/icon_voice_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/icon_voice_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/icon_voice_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_voice_h.imageset/icon_voice_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/icon_voice_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/icon_voice_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/icon_voice_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_voice_n.imageset/icon_voice_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/list_icon_drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/list_icon_drop.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/nav_btn_back_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/nav_btn_back_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right.imageset/text---right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/text---right.imageset/text---right@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right.imageset/text---right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/text---right.imageset/text---right@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_h.imageset/text---right_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/text---right_h.imageset/text---right_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_report_n.imageset/icon_report_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_report_n.imageset/icon_report_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_timeout.imageset/icon_timeout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_timeout.imageset/icon_timeout@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_timeout.imageset/icon_timeout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_timeout.imageset/icon_timeout@3x.png -------------------------------------------------------------------------------- /SwiftBooks/Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCellDebug.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDTemplateLayoutCellDebug.h -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- 1 | framework module Masonry { 2 | umbrella header "Masonry-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Toast/Toast-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Toast : NSObject 3 | @end 4 | @implementation PodsDummy_Toast 5 | @end 6 | -------------------------------------------------------------------------------- /Swift_Weather/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/bg_btn_video_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/bg_btn_video_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/bg_btn_video_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_btn_video_h.imageset/bg_btn_video_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/bg_btn_video_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/bg_btn_video_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/bg_btn_video_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/bg_btn_video_n.imageset/bg_btn_video_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/bg_video_number_more_hh_9.imageset/.svn/prop-base/bg_video_number_more_hh_9@3x.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/btn_downlaod_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/btn_downlaod_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/btn_downlaod_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_downlaod_n.imageset/btn_downlaod_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_downlaod_no.imageset/btn_downlaod_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_downlaod_no.imageset/btn_downlaod_no.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/btn_timeout_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/btn_timeout_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/btn_timeout_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/btn_timeout_n.imageset/btn_timeout_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/hopper_ic_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/hopper_ic_down@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/hopper_ic_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/hopper_ic_down.imageset/hopper_ic_down@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/ic_no-comments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/ic_no-comments@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/ic_no-comments@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/ic_no-comments.imageset/ic_no-comments@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h-1.imageset/icon_collect_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_h-1.imageset/icon_collect_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/icon_collect_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/icon_collect_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/icon_collect_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_h.imageset/icon_collect_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n-1.imageset/icon_collect_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_n-1.imageset/icon_collect_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/icon_collect_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/icon_collect_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/icon_collect_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_collect_n.imageset/icon_collect_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_h.imageset/icon_download_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_download_h.imageset/icon_download_h.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_download_n.imageset/icon_download_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_download_n.imageset/icon_download_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/icon_offline_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/icon_offline_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/icon_offline_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_offline_h.imageset/icon_offline_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/icon_offline_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/icon_offline_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/icon_offline_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_offline_n.imageset/icon_offline_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/icon_playblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/icon_playblue@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/icon_playblue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_playblue.imageset/icon_playblue@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/icon_offline_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/icon_offline_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/icon_offline_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_start_h.imageset/icon_offline_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/icon_offline_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/icon_offline_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/icon_offline_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/icon_start_n.imageset/icon_offline_n@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/list_icon_drop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/list_icon_drop@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/list_icon_drop@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_icon_drop.imageset/list_icon_drop@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_letv.imageset/list_video_letv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_video_letv.imageset/list_video_letv.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_pptv.imageset/list_video_pptv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_video_pptv.imageset/list_video_pptv.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/list_video_qq@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/list_video_qq@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/list_video_qq@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_video_qq.imageset/list_video_qq@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/list_video_sohu.imageset/list_video_sohu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/list_video_sohu.imageset/list_video_sohu.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/nav_btn_back_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/nav_btn_back_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/nav_btn_back_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nav_btn_back_h.imageset/nav_btn_back_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/new.imageset/.svn/text-base/new.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/new.imageset/.svn/text-base/new.png.svn-base -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/nopic_190x210@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/nopic_190x210@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/nopic_190x210@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/nopic_190x210.imageset/nopic_190x210@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_h.imageset/text---right_h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/text---right_h.imageset/text---right_h@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/SeekTV_Img/text---right_h.imageset/text---right_h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/SeekTV_Img/text---right_h.imageset/text---right_h@3x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/btn_downlaod_no.imageset/btn_downlaod_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/btn_downlaod_no.imageset/btn_downlaod_no.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/ic_share_topic.imageset/ic_share_topic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/ic_share_topic.imageset/ic_share_topic.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_play_point.imageset/icon_play_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_play_point.imageset/icon_play_point.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_quantity_n.imageset/icon_quantity_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_quantity_n.imageset/icon_quantity_n.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_report_n.imageset/icon_report_n@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_report_n.imageset/icon_report_n@2x.png -------------------------------------------------------------------------------- /TFVideoPlayer/videoPlayer/icon_report_n.imageset/icon_report_n@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darren90/iOS_Demo/HEAD/TFVideoPlayer/videoPlayer/icon_report_n.imageset/icon_report_n@3x.png -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/MJRefresh/MJRefresh.modulemap: -------------------------------------------------------------------------------- 1 | framework module MJRefresh { 2 | umbrella header "MJRefresh-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SwiftBooks/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | --------------------------------------------------------------------------------