├── AppDelegate.h ├── AppDelegate.m ├── Info.plist ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ └── AFURLSessionManager.h │ │ ├── JGProgressHUD │ │ │ ├── JGProgressHUD-Defines.h │ │ │ ├── JGProgressHUD.h │ │ │ ├── JGProgressHUDAnimation.h │ │ │ ├── JGProgressHUDErrorIndicatorView.h │ │ │ ├── JGProgressHUDFadeAnimation.h │ │ │ ├── JGProgressHUDFadeZoomAnimation.h │ │ │ ├── JGProgressHUDImageIndicatorView.h │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.h │ │ │ ├── JGProgressHUDIndicatorView.h │ │ │ ├── JGProgressHUDPieIndicatorView.h │ │ │ ├── JGProgressHUDRingIndicatorView.h │ │ │ └── JGProgressHUDSuccessIndicatorView.h │ │ ├── MJExtension │ │ │ ├── MJExtension.h │ │ │ ├── MJExtensionConst.h │ │ │ ├── MJFoundation.h │ │ │ ├── MJProperty.h │ │ │ ├── MJPropertyKey.h │ │ │ ├── MJPropertyType.h │ │ │ ├── NSObject+MJClass.h │ │ │ ├── NSObject+MJCoding.h │ │ │ ├── NSObject+MJKeyValue.h │ │ │ ├── NSObject+MJProperty.h │ │ │ └── NSString+MJExtension.h │ │ ├── MJRefresh │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshGifHeader.h │ │ │ ├── MJRefreshHeader.h │ │ │ ├── MJRefreshNormalHeader.h │ │ │ ├── MJRefreshStateHeader.h │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ └── UIView+MJExtension.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+WebP.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ ├── UITableView+FDTemplateLayoutCell │ │ │ ├── UITableView+FDIndexPathHeightCache.h │ │ │ ├── UITableView+FDKeyedHeightCache.h │ │ │ ├── UITableView+FDTemplateLayoutCell.h │ │ │ └── UITableView+FDTemplateLayoutCellDebug.h │ │ └── libwebp │ │ │ ├── alphai.h │ │ │ ├── backward_references.h │ │ │ ├── bit_reader.h │ │ │ ├── bit_reader_inl.h │ │ │ ├── bit_writer.h │ │ │ ├── color_cache.h │ │ │ ├── common.h │ │ │ ├── cost.h │ │ │ ├── decode_vp8.h │ │ │ ├── delta_palettization.h │ │ │ ├── dsp.h │ │ │ ├── endian_inl.h │ │ │ ├── filters.h │ │ │ ├── histogram.h │ │ │ ├── huffman.h │ │ │ ├── huffman_encode.h │ │ │ ├── lossless.h │ │ │ ├── mips_macro.h │ │ │ ├── muxi.h │ │ │ ├── neon.h │ │ │ ├── quant_levels.h │ │ │ ├── quant_levels_dec.h │ │ │ ├── random.h │ │ │ ├── rescaler.h │ │ │ ├── thread.h │ │ │ ├── utils.h │ │ │ ├── vp8enci.h │ │ │ ├── vp8i.h │ │ │ ├── vp8li.h │ │ │ ├── webp │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── extras.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ │ │ ├── webpi.h │ │ │ └── yuv.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ └── AFURLSessionManager.h │ │ ├── JGProgressHUD │ │ ├── JGProgressHUD-Defines.h │ │ ├── JGProgressHUD.h │ │ ├── JGProgressHUDAnimation.h │ │ ├── JGProgressHUDErrorIndicatorView.h │ │ ├── JGProgressHUDFadeAnimation.h │ │ ├── JGProgressHUDFadeZoomAnimation.h │ │ ├── JGProgressHUDImageIndicatorView.h │ │ ├── JGProgressHUDIndeterminateIndicatorView.h │ │ ├── JGProgressHUDIndicatorView.h │ │ ├── JGProgressHUDPieIndicatorView.h │ │ ├── JGProgressHUDRingIndicatorView.h │ │ └── JGProgressHUDSuccessIndicatorView.h │ │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJFoundation.h │ │ ├── MJProperty.h │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyType.h │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJProperty.h │ │ └── NSString+MJExtension.h │ │ ├── MJRefresh │ │ ├── MJRefresh.h │ │ ├── MJRefreshAutoFooter.h │ │ ├── MJRefreshAutoGifFooter.h │ │ ├── MJRefreshAutoNormalFooter.h │ │ ├── MJRefreshAutoStateFooter.h │ │ ├── MJRefreshBackFooter.h │ │ ├── MJRefreshBackGifFooter.h │ │ ├── MJRefreshBackNormalFooter.h │ │ ├── MJRefreshBackStateFooter.h │ │ ├── MJRefreshComponent.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshFooter.h │ │ ├── MJRefreshGifHeader.h │ │ ├── MJRefreshHeader.h │ │ ├── MJRefreshNormalHeader.h │ │ ├── MJRefreshStateHeader.h │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJRefresh.h │ │ └── UIView+MJExtension.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+WebP.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ ├── UITableView+FDTemplateLayoutCell │ │ ├── UITableView+FDIndexPathHeightCache.h │ │ ├── UITableView+FDKeyedHeightCache.h │ │ ├── UITableView+FDTemplateLayoutCell.h │ │ └── UITableView+FDTemplateLayoutCellDebug.h │ │ ├── UMengAnalytics │ │ └── UMMobClick │ │ │ ├── MobClick.h │ │ │ ├── MobClickGameAnalytics.h │ │ │ └── MobClickSocialAnalytics.h │ │ └── libwebp │ │ ├── alphai.h │ │ ├── backward_references.h │ │ ├── bit_reader.h │ │ ├── bit_reader_inl.h │ │ ├── bit_writer.h │ │ ├── color_cache.h │ │ ├── common.h │ │ ├── cost.h │ │ ├── decode_vp8.h │ │ ├── delta_palettization.h │ │ ├── dsp.h │ │ ├── endian_inl.h │ │ ├── filters.h │ │ ├── histogram.h │ │ ├── huffman.h │ │ ├── huffman_encode.h │ │ ├── lossless.h │ │ ├── mips_macro.h │ │ ├── muxi.h │ │ ├── neon.h │ │ ├── quant_levels.h │ │ ├── quant_levels_dec.h │ │ ├── random.h │ │ ├── rescaler.h │ │ ├── thread.h │ │ ├── utils.h │ │ ├── vp8enci.h │ │ ├── vp8i.h │ │ ├── vp8li.h │ │ ├── webp │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ ├── webpi.h │ │ └── yuv.h ├── JGProgressHUD │ ├── JGProgressHUD │ │ └── JGProgressHUD │ │ │ ├── JGProgressHUD Resources.bundle │ │ │ ├── jg_hud_error.png │ │ │ ├── jg_hud_error@2x.png │ │ │ ├── jg_hud_error@3x.png │ │ │ ├── jg_hud_success.png │ │ │ ├── jg_hud_success@2x.png │ │ │ └── jg_hud_success@3x.png │ │ │ ├── JGProgressHUD-Defines.h │ │ │ ├── JGProgressHUD.h │ │ │ ├── JGProgressHUD.m │ │ │ ├── JGProgressHUDAnimation.h │ │ │ ├── JGProgressHUDAnimation.m │ │ │ ├── JGProgressHUDErrorIndicatorView.h │ │ │ ├── JGProgressHUDErrorIndicatorView.m │ │ │ ├── JGProgressHUDFadeAnimation.h │ │ │ ├── JGProgressHUDFadeAnimation.m │ │ │ ├── JGProgressHUDFadeZoomAnimation.h │ │ │ ├── JGProgressHUDFadeZoomAnimation.m │ │ │ ├── JGProgressHUDImageIndicatorView.h │ │ │ ├── JGProgressHUDImageIndicatorView.m │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.h │ │ │ ├── JGProgressHUDIndeterminateIndicatorView.m │ │ │ ├── JGProgressHUDIndicatorView.h │ │ │ ├── JGProgressHUDIndicatorView.m │ │ │ ├── JGProgressHUDPieIndicatorView.h │ │ │ ├── JGProgressHUDPieIndicatorView.m │ │ │ ├── JGProgressHUDRingIndicatorView.h │ │ │ ├── JGProgressHUDRingIndicatorView.m │ │ │ ├── JGProgressHUDSuccessIndicatorView.h │ │ │ └── JGProgressHUDSuccessIndicatorView.m │ ├── LICENSE.txt │ └── README.md ├── MJExtension │ ├── LICENSE │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyKey.m │ │ ├── MJPropertyType.h │ │ ├── MJPropertyType.m │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJClass.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ └── README.md ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ └── arrow@2x.png │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── admin.xcuserdatad │ │ └── xcschemes │ │ │ ├── AFNetworking.xcscheme │ │ │ ├── JGProgressHUD.xcscheme │ │ │ ├── MJExtension.xcscheme │ │ │ ├── MJRefresh.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-kuaikanCartoon.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ ├── UITableView+FDTemplateLayoutCell.xcscheme │ │ │ ├── libwebp.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── keenteam.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImage+WebP.h │ │ ├── UIImage+WebP.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ └── AFNetworking.xcconfig │ ├── JGProgressHUD │ │ ├── JGProgressHUD-dummy.m │ │ ├── JGProgressHUD-prefix.pch │ │ └── JGProgressHUD.xcconfig │ ├── MJExtension │ │ ├── MJExtension-dummy.m │ │ ├── MJExtension-prefix.pch │ │ └── MJExtension.xcconfig │ ├── MJRefresh │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ └── MJRefresh.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ ├── Pods-kuaikanCartoon │ │ ├── Pods-kuaikanCartoon-acknowledgements.markdown │ │ ├── Pods-kuaikanCartoon-acknowledgements.plist │ │ ├── Pods-kuaikanCartoon-dummy.m │ │ ├── Pods-kuaikanCartoon-frameworks.sh │ │ ├── Pods-kuaikanCartoon-resources.sh │ │ ├── Pods-kuaikanCartoon.debug.xcconfig │ │ └── Pods-kuaikanCartoon.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ └── SDWebImage.xcconfig │ ├── UITableView+FDTemplateLayoutCell │ │ ├── UITableView+FDTemplateLayoutCell-dummy.m │ │ ├── UITableView+FDTemplateLayoutCell-prefix.pch │ │ └── UITableView+FDTemplateLayoutCell.xcconfig │ └── libwebp │ │ ├── libwebp-dummy.m │ │ ├── libwebp-prefix.pch │ │ └── libwebp.xcconfig ├── UITableView+FDTemplateLayoutCell │ ├── Classes │ │ ├── UITableView+FDIndexPathHeightCache.h │ │ ├── UITableView+FDIndexPathHeightCache.m │ │ ├── UITableView+FDKeyedHeightCache.h │ │ ├── UITableView+FDKeyedHeightCache.m │ │ ├── UITableView+FDTemplateLayoutCell.h │ │ ├── UITableView+FDTemplateLayoutCell.m │ │ ├── UITableView+FDTemplateLayoutCellDebug.h │ │ └── UITableView+FDTemplateLayoutCellDebug.m │ ├── LICENSE │ └── README.md ├── UMengAnalytics │ └── umsdk_IOS_analyics_idfa_v4.0.0 │ │ └── UMMobClick.framework │ │ ├── Headers │ │ ├── UMMobClick │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── MobClick.h │ │ │ ├── MobClickGameAnalytics.h │ │ │ └── MobClickSocialAnalytics.h │ │ └── UMMobClick │ │ └── Current ├── iOS-WebP │ ├── LICENSE │ ├── README.md │ └── iOS-WebP │ │ ├── UIImage+WebP.h │ │ └── UIImage+WebP.m └── libwebp │ ├── COPYING │ ├── README │ ├── README.mux │ └── src │ ├── dec │ ├── alpha.c │ ├── alphai.h │ ├── buffer.c │ ├── common.h │ ├── decode_vp8.h │ ├── frame.c │ ├── idec.c │ ├── io.c │ ├── quant.c │ ├── tree.c │ ├── vp8.c │ ├── vp8i.h │ ├── vp8l.c │ ├── vp8li.h │ ├── webp.c │ └── webpi.h │ ├── demux │ ├── anim_decode.c │ └── demux.c │ ├── dsp │ ├── alpha_processing.c │ ├── alpha_processing_mips_dsp_r2.c │ ├── alpha_processing_sse2.c │ ├── alpha_processing_sse41.c │ ├── argb.c │ ├── argb_mips_dsp_r2.c │ ├── argb_sse2.c │ ├── cost.c │ ├── cost_mips32.c │ ├── cost_mips_dsp_r2.c │ ├── cost_sse2.c │ ├── cpu.c │ ├── dec.c │ ├── dec_clip_tables.c │ ├── dec_mips32.c │ ├── dec_mips_dsp_r2.c │ ├── dec_neon.c │ ├── dec_sse2.c │ ├── dec_sse41.c │ ├── dsp.h │ ├── enc.c │ ├── enc_avx2.c │ ├── enc_mips32.c │ ├── enc_mips_dsp_r2.c │ ├── enc_neon.c │ ├── enc_sse2.c │ ├── enc_sse41.c │ ├── filters.c │ ├── filters_mips_dsp_r2.c │ ├── filters_sse2.c │ ├── lossless.c │ ├── lossless.h │ ├── lossless_enc.c │ ├── lossless_enc_mips32.c │ ├── lossless_enc_mips_dsp_r2.c │ ├── lossless_enc_neon.c │ ├── lossless_enc_sse2.c │ ├── lossless_enc_sse41.c │ ├── lossless_mips_dsp_r2.c │ ├── lossless_neon.c │ ├── lossless_sse2.c │ ├── mips_macro.h │ ├── neon.h │ ├── rescaler.c │ ├── rescaler_mips32.c │ ├── rescaler_mips_dsp_r2.c │ ├── rescaler_neon.c │ ├── rescaler_sse2.c │ ├── upsampling.c │ ├── upsampling_mips_dsp_r2.c │ ├── upsampling_neon.c │ ├── upsampling_sse2.c │ ├── yuv.c │ ├── yuv.h │ ├── yuv_mips32.c │ ├── yuv_mips_dsp_r2.c │ └── yuv_sse2.c │ ├── enc │ ├── alpha.c │ ├── analysis.c │ ├── backward_references.c │ ├── backward_references.h │ ├── config.c │ ├── cost.c │ ├── cost.h │ ├── delta_palettization.c │ ├── delta_palettization.h │ ├── filter.c │ ├── frame.c │ ├── histogram.c │ ├── histogram.h │ ├── iterator.c │ ├── near_lossless.c │ ├── picture.c │ ├── picture_csp.c │ ├── picture_psnr.c │ ├── picture_rescale.c │ ├── picture_tools.c │ ├── quant.c │ ├── syntax.c │ ├── token.c │ ├── tree.c │ ├── vp8enci.h │ ├── vp8l.c │ ├── vp8li.h │ └── webpenc.c │ ├── mux │ ├── anim_encode.c │ ├── muxedit.c │ ├── muxi.h │ ├── muxinternal.c │ └── muxread.c │ ├── utils │ ├── bit_reader.c │ ├── bit_reader.h │ ├── bit_reader_inl.h │ ├── bit_writer.c │ ├── bit_writer.h │ ├── color_cache.c │ ├── color_cache.h │ ├── endian_inl.h │ ├── filters.c │ ├── filters.h │ ├── huffman.c │ ├── huffman.h │ ├── huffman_encode.c │ ├── huffman_encode.h │ ├── quant_levels.c │ ├── quant_levels.h │ ├── quant_levels_dec.c │ ├── quant_levels_dec.h │ ├── random.c │ ├── random.h │ ├── rescaler.c │ ├── rescaler.h │ ├── thread.c │ ├── thread.h │ ├── utils.c │ └── utils.h │ └── webp │ ├── decode.h │ ├── demux.h │ ├── encode.h │ ├── extras.h │ ├── format_constants.h │ ├── mux.h │ ├── mux_types.h │ └── types.h ├── README.md ├── kuaikanCartoon.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── admin.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── admin.xcuserdatad │ └── xcschemes │ │ ├── kuaikanCartoon.xcscheme │ │ └── xcschememanagement.plist │ └── keenteam.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── kuaikanCartoon.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ ├── admin.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── keenteam.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── kuaikanCartoon ├── AppDelegate.h ├── AppDelegate.m ├── Classes │ ├── AuthorStatus(作者动态) │ │ ├── Controllers │ │ │ ├── AuthorStatusDetailViewController.h │ │ │ ├── AuthorStatusDetailViewController.m │ │ │ ├── AuthorStatusViewController.h │ │ │ └── AuthorStatusViewController.m │ │ ├── Models │ │ │ ├── FeedsDataModel.h │ │ │ └── FeedsDataModel.m │ │ └── Views │ │ │ ├── FeedsTableView.h │ │ │ ├── FeedsTableView.m │ │ │ ├── StatusCell.h │ │ │ ├── StatusCell.m │ │ │ ├── StatusImageContentView.h │ │ │ └── StatusImageContentView.m │ ├── BaseClasses(基类) │ │ ├── Controllers │ │ │ ├── BaseNavigationController.h │ │ │ ├── BaseNavigationController.m │ │ │ ├── BaseTableViewController.h │ │ │ ├── BaseTableViewController.m │ │ │ ├── BaseViewController.h │ │ │ └── BaseViewController.m │ │ └── Models │ │ │ ├── BaseModel.h │ │ │ └── BaseModel.m │ ├── Findings(发现) │ │ ├── Controllers │ │ │ ├── FindingsViewController.h │ │ │ └── FindingsViewController.m │ │ ├── Models │ │ │ ├── bannerModel.h │ │ │ ├── bannerModel.m │ │ │ ├── bannersModel.h │ │ │ ├── bannersModel.m │ │ │ ├── topicInfoModel.h │ │ │ └── topicInfoModel.m │ │ └── Views │ │ │ ├── FindHeaderSectionView.h │ │ │ ├── FindHeaderSectionView.m │ │ │ ├── GuanFangHuoDongCell.h │ │ │ ├── GuanFangHuoDongCell.m │ │ │ ├── MeiZhouPaiHangCell.h │ │ │ ├── MeiZhouPaiHangCell.m │ │ │ ├── MeiZhouPaiHangItem.h │ │ │ ├── MeiZhouPaiHangItem.m │ │ │ ├── MeiZhouPaiHangItem.xib │ │ │ ├── RenQiBiaoShengCell.h │ │ │ ├── RenQiBiaoShengCell.m │ │ │ ├── XinZuoCell.h │ │ │ ├── XinZuoCell.m │ │ │ ├── ZhuBianLiTuiCell.h │ │ │ ├── ZhuBianLiTuiCell.m │ │ │ ├── topicInfoView.h │ │ │ └── topicInfoView.m │ ├── Home(主页) │ │ ├── Controllers │ │ │ ├── HomeViewController.h │ │ │ └── HomeViewController.m │ │ ├── Models │ │ │ ├── SummaryModel.h │ │ │ ├── SummaryModel.m │ │ │ ├── topicModel.h │ │ │ ├── topicModel.m │ │ │ ├── userModel.h │ │ │ ├── userModel.m │ │ │ ├── wordsModel.h │ │ │ └── wordsModel.m │ │ └── Views │ │ │ ├── UpdateCartoonView │ │ │ ├── Cell │ │ │ │ ├── CartoonSummaryCell.h │ │ │ │ ├── CartoonSummaryCell.m │ │ │ │ ├── CartoonSummaryCell.xib │ │ │ │ ├── SummaryListItem.h │ │ │ │ ├── SummaryListItem.m │ │ │ │ ├── WordsListView.h │ │ │ │ └── WordsListView.m │ │ │ ├── updateCartoonListView.h │ │ │ ├── updateCartoonListView.m │ │ │ ├── updateCartoonView.h │ │ │ └── updateCartoonView.m │ │ │ └── UsersConcerned │ │ │ ├── UserNotLoginTipView.h │ │ │ ├── UserNotLoginTipView.m │ │ │ └── UserNotLoginTipView.xib │ ├── Main(入口) │ │ ├── Controllers │ │ │ ├── GuideViewController.h │ │ │ ├── GuideViewController.m │ │ │ ├── MainTabBarController.h │ │ │ └── MainTabBarController.m │ │ └── Views │ │ │ ├── MainTabbar.h │ │ │ └── MainTabbar.m │ ├── Personal Center(个人中心) │ │ ├── Controllers │ │ │ ├── MyCollectionViewController.h │ │ │ ├── MyCollectionViewController.m │ │ │ ├── MyFellowViewController.h │ │ │ ├── MyFellowViewController.m │ │ │ ├── MyMessageViewController.h │ │ │ ├── MyMessageViewController.m │ │ │ ├── PersonalViewController.h │ │ │ ├── PersonalViewController.m │ │ │ ├── SettingTableViewController.h │ │ │ └── SettingTableViewController.m │ │ ├── Models │ │ │ ├── CollectionComicModel.h │ │ │ ├── CollectionComicModel.m │ │ │ ├── FellowTopicsModel.h │ │ │ ├── FellowTopicsModel.m │ │ │ ├── ReplyDataModel.h │ │ │ └── ReplyDataModel.m │ │ ├── PersonalCenter.storyboard │ │ └── Views │ │ │ ├── MyCollectionCell.h │ │ │ ├── MyCollectionCell.m │ │ │ ├── MyCollectionCell.xib │ │ │ ├── MyFellowWordsCell.h │ │ │ ├── MyFellowWordsCell.m │ │ │ ├── MyFellowWordsCell.xib │ │ │ ├── MyMessageCell.h │ │ │ ├── MyMessageCell.m │ │ │ └── MyMessageCell.xib │ ├── PublicViewPage(公共页面) │ │ ├── AuthorInfoPage(作者信息页面) │ │ │ ├── Controllers │ │ │ │ ├── AuthorInfoViewController.h │ │ │ │ └── AuthorInfoViewController.m │ │ │ ├── Models │ │ │ │ ├── AuthorInfoModel.h │ │ │ │ └── AuthorInfoModel.m │ │ │ └── Views │ │ │ │ ├── AuthorInfoDetailHeadView.h │ │ │ │ ├── AuthorInfoDetailHeadView.m │ │ │ │ ├── AuthorInfoDetailHeadView.xib │ │ │ │ ├── AuthorProfileView.h │ │ │ │ ├── AuthorProfileView.m │ │ │ │ ├── AuthorShareInfoCell.h │ │ │ │ ├── AuthorShareInfoCell.m │ │ │ │ ├── AuthorTopicInfoCell.h │ │ │ │ └── AuthorTopicInfoCell.m │ │ ├── CartoonDetail(漫画详情) │ │ │ ├── Controllers │ │ │ │ ├── CartoonDetailViewController.h │ │ │ │ └── CartoonDetailViewController.m │ │ │ ├── Models │ │ │ │ ├── bannerInfoModel.h │ │ │ │ ├── bannerInfoModel.m │ │ │ │ ├── comicsModel.h │ │ │ │ └── comicsModel.m │ │ │ └── Views │ │ │ │ ├── CartoonContentCell.h │ │ │ │ ├── CartoonContentCell.m │ │ │ │ ├── CartoonFlooterView.h │ │ │ │ ├── CartoonFlooterView.m │ │ │ │ ├── CartoonFlooterView.xib │ │ │ │ ├── CommentBottomView.h │ │ │ │ ├── CommentBottomView.m │ │ │ │ ├── CommentBottomView.xib │ │ │ │ ├── CommentSectionHeadView.h │ │ │ │ ├── CommentSectionHeadView.m │ │ │ │ ├── authorInfoHeadView.h │ │ │ │ └── authorInfoHeadView.m │ │ ├── CommentDetail(评论详情) │ │ │ ├── Controllers │ │ │ │ ├── CommentDetailViewController.h │ │ │ │ └── CommentDetailViewController.m │ │ │ ├── Models │ │ │ │ ├── CommentDetailModel.h │ │ │ │ ├── CommentDetailModel.m │ │ │ │ ├── CommentsModel.h │ │ │ │ └── CommentsModel.m │ │ │ └── Views │ │ │ │ ├── CommentInfoCell.h │ │ │ │ ├── CommentInfoCell.m │ │ │ │ ├── CommentInfoCell.xib │ │ │ │ ├── CommentSendView.h │ │ │ │ ├── CommentSendView.m │ │ │ │ ├── CommentSendView.xib │ │ │ │ ├── CommentSendViewContainer.h │ │ │ │ └── CommentSendViewContainer.m │ │ ├── LoginPage(登录页面) │ │ │ ├── LoginViewController.h │ │ │ ├── LoginViewController.m │ │ │ ├── LoginViewController.xib │ │ │ ├── registerViewController.h │ │ │ ├── registerViewController.m │ │ │ └── registerViewController.xib │ │ ├── SearchPage(搜索页面) │ │ │ ├── Controllers │ │ │ │ ├── SearchViewController.h │ │ │ │ └── SearchViewController.m │ │ │ ├── Models │ │ │ │ ├── SearchWordModel.h │ │ │ │ └── searchWordModel.m │ │ │ └── Views │ │ │ │ ├── CustomSearchBar.h │ │ │ │ ├── CustomSearchBar.m │ │ │ │ ├── CustomSearchBar.xib │ │ │ │ ├── NoResultTipView.h │ │ │ │ ├── NoResultTipView.m │ │ │ │ ├── SearchHistoryCell.h │ │ │ │ ├── SearchHistoryCell.m │ │ │ │ ├── SearchHistoryView.h │ │ │ │ ├── SearchHistoryView.m │ │ │ │ ├── SearchResultsCell.h │ │ │ │ ├── SearchResultsCell.m │ │ │ │ └── SearchResultsCell.xib │ │ └── WorksDetail(作品详情) │ │ │ ├── Controllers │ │ │ ├── WordsDetailViewController.h │ │ │ └── WordsDetailViewController.m │ │ │ ├── Models │ │ │ ├── CartonnWordsModel.h │ │ │ ├── CartonnWordsModel.m │ │ │ ├── wordsDetailModel.h │ │ │ └── wordsDetailModel.m │ │ │ └── Views │ │ │ ├── wordAuthorCell.h │ │ │ ├── wordAuthorCell.m │ │ │ ├── wordDescSectionHeadView.h │ │ │ ├── wordDescSectionHeadView.m │ │ │ ├── wordTableViewCell.h │ │ │ ├── wordTableViewCell.m │ │ │ ├── wordTableViewCell.xib │ │ │ ├── wordsDetailHeadView.h │ │ │ ├── wordsDetailHeadView.m │ │ │ ├── wordsDetailHeadView.xib │ │ │ ├── wordsOptionsHeadView.h │ │ │ ├── wordsOptionsHeadView.m │ │ │ ├── wordsSequenceView.h │ │ │ └── wordsSequenceView.m │ └── UI组件 │ │ └── Views │ │ ├── DCPicscrollView │ │ ├── DCPicItem.h │ │ ├── DCPicItem.m │ │ ├── DCPicItemConfiguration.h │ │ ├── DCPicItemConfiguration.m │ │ ├── DCPicScrollView.h │ │ ├── DCPicScrollView.m │ │ ├── DCPicScrollViewConfiguration.h │ │ ├── DCPicScrollViewConfiguration.m │ │ ├── NSTimer+Control.h │ │ └── NSTimer+Control.m │ │ ├── ListView.h │ │ ├── ListView.m │ │ ├── ProgressHUD.h │ │ ├── ProgressHUD.m │ │ ├── likeCountView.h │ │ ├── likeCountView.m │ │ ├── navBarTitleView.h │ │ ├── navBarTitleView.m │ │ ├── userAuthenticationIcon.h │ │ └── userAuthenticationIcon.m ├── Extension │ ├── NSString+Extension.h │ ├── NSString+Extension.m │ ├── UIBarButtonItem+EXtension.h │ ├── UIBarButtonItem+EXtension.m │ ├── UIColor+Extension.h │ ├── UIColor+Extension.m │ ├── UIImage+Extension.h │ ├── UIImage+Extension.m │ ├── UIImage+ImageEffects.h │ ├── UIImage+ImageEffects.m │ ├── UIImageView+Extension.h │ ├── UIImageView+Extension.m │ ├── UIView+Extension.h │ └── UIView+Extension.m ├── FrameWork │ └── ZLPhotoLib │ │ ├── Classes │ │ ├── Utils │ │ │ └── Category │ │ │ │ ├── UIImage+ZLPhotoLib.h │ │ │ │ ├── UIImage+ZLPhotoLib.m │ │ │ │ ├── UIView+ZLExtension.h │ │ │ │ └── UIView+ZLExtension.m │ │ ├── ZLPhoto.h │ │ ├── ZLPhotoBrowser │ │ │ ├── Models │ │ │ │ ├── ZLPhotoPickerBrowserPhoto.h │ │ │ │ ├── ZLPhotoPickerBrowserPhoto.m │ │ │ │ ├── ZLPhotoRect.h │ │ │ │ └── ZLPhotoRect.m │ │ │ ├── ViewControllers │ │ │ │ ├── ZLPhotoPickerBrowserViewController+SignlePhotoBrowser.h │ │ │ │ ├── ZLPhotoPickerBrowserViewController+SignlePhotoBrowser.m │ │ │ │ ├── ZLPhotoPickerBrowserViewController.h │ │ │ │ └── ZLPhotoPickerBrowserViewController.m │ │ │ └── Views │ │ │ │ ├── ZLPhotoPickerBrowserPhotoImageView.h │ │ │ │ ├── ZLPhotoPickerBrowserPhotoImageView.m │ │ │ │ ├── ZLPhotoPickerBrowserPhotoScrollView.h │ │ │ │ ├── ZLPhotoPickerBrowserPhotoScrollView.m │ │ │ │ ├── ZLPhotoPickerBrowserPhotoView.h │ │ │ │ ├── ZLPhotoPickerBrowserPhotoView.m │ │ │ │ ├── ZLPhotoPickerCustomToolBarView.h │ │ │ │ └── ZLPhotoPickerCustomToolBarView.m │ │ ├── ZLPhotoPicker │ │ │ ├── Models │ │ │ │ ├── ZLPhotoAssets.h │ │ │ │ ├── ZLPhotoAssets.m │ │ │ │ ├── ZLPhotoPickerDatas.h │ │ │ │ ├── ZLPhotoPickerDatas.m │ │ │ │ ├── ZLPhotoPickerGroup.h │ │ │ │ └── ZLPhotoPickerGroup.m │ │ │ ├── ViewControllers │ │ │ │ ├── UIViewController+Alert.h │ │ │ │ ├── UIViewController+Alert.m │ │ │ │ ├── ZLNavigationController.h │ │ │ │ ├── ZLNavigationController.m │ │ │ │ ├── ZLPhotoPickerAssetsViewController.h │ │ │ │ ├── ZLPhotoPickerAssetsViewController.m │ │ │ │ ├── ZLPhotoPickerGroupViewController.h │ │ │ │ ├── ZLPhotoPickerGroupViewController.m │ │ │ │ ├── ZLPhotoPickerViewController.h │ │ │ │ └── ZLPhotoPickerViewController.m │ │ │ └── Views │ │ │ │ ├── ZLPhotoPickerCollectionView.h │ │ │ │ ├── ZLPhotoPickerCollectionView.m │ │ │ │ ├── ZLPhotoPickerCollectionViewCell.h │ │ │ │ ├── ZLPhotoPickerCollectionViewCell.m │ │ │ │ ├── ZLPhotoPickerFooterCollectionReusableView.h │ │ │ │ ├── ZLPhotoPickerFooterCollectionReusableView.m │ │ │ │ ├── ZLPhotoPickerGroupTableViewCell.h │ │ │ │ ├── ZLPhotoPickerGroupTableViewCell.m │ │ │ │ ├── ZLPhotoPickerImageView.h │ │ │ │ └── ZLPhotoPickerImageView.m │ │ └── ZLPhotoPickerCommon.h │ │ ├── DACircularProgress │ │ ├── DACircularProgressView.h │ │ ├── DACircularProgressView.m │ │ ├── DALabeledCircularProgressView.h │ │ └── DALabeledCircularProgressView.m │ │ └── ZLPhotoLib.bundle │ │ ├── zl_X.png │ │ ├── zl_X@2x.png │ │ ├── zl_camera@2x.png │ │ ├── zl_icon_image_no@2x.png │ │ ├── zl_icon_image_no@3x.png │ │ ├── zl_icon_image_yes@2x.png │ │ ├── zl_icon_image_yes@3x.png │ │ ├── zl_iconfont-tianjia.png │ │ ├── zl_lock@2x.png │ │ ├── zl_nav_delete_btn.png │ │ ├── zl_nav_delete_btn@2x.png │ │ ├── zl_paizhao.png │ │ ├── zl_paizhao@2x.png │ │ ├── zl_pc_circle_placeholder@2x.png │ │ ├── zl_shanguangdeng.png │ │ ├── zl_shanguangdeng2.png │ │ ├── zl_shanguangdeng2@2x.png │ │ ├── zl_shanguangdeng@2x.png │ │ ├── zl_video-play@2x.png │ │ ├── zl_video-play@3x.png │ │ ├── zl_video.png │ │ ├── zl_video@2x.png │ │ ├── zl_xiang.png │ │ └── zl_xiang@2x.png ├── Macro │ ├── CommonMacro.h │ └── UrlStringDefine.h ├── Resource │ └── Image │ │ └── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Guide │ │ ├── Contents.json │ │ ├── guidev3-1_375x667_.imageset │ │ │ ├── Contents.json │ │ │ └── guidev3-1_375x667_@2x.png │ │ ├── guidev3-1_414x736_.imageset │ │ │ ├── Contents.json │ │ │ └── guidev3-1_414x736_@3x.png │ │ ├── guidev3-2_375x667_.imageset │ │ │ ├── Contents.json │ │ │ └── guidev3-2_375x667_@2x.png │ │ ├── guidev3-2_414x736_.imageset │ │ │ ├── Contents.json │ │ │ └── guidev3-2_414x736_@3x.png │ │ ├── guidev3-3_375x667_.imageset │ │ │ ├── Contents.json │ │ │ └── guidev3-3_375x667_@2x.png │ │ └── guidev3-3_414x736_.imageset │ │ │ ├── Contents.json │ │ │ └── guidev3-3_414x736_@3x.png │ │ ├── Home │ │ ├── Contents.json │ │ ├── home_recommend_cell_author_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── home_recommend_cell_author_15x15_@2x.png │ │ ├── ic_home_date_16x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_date_16x16_@3x.png │ │ ├── ic_home_date_17x17_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_date_17x17_@2x.png │ │ ├── ic_home_divide_0x20_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_divide_0x20_@3x.png │ │ ├── ic_home_divide_0x30_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_divide_0x30_@2x.png │ │ ├── ic_home_empty_login_normal_120x49_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_empty_login_normal_120x49_@2x.png │ │ ├── ic_home_empty_login_pressed_120x49_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_empty_login_pressed_120x49_@2x.png │ │ ├── ic_home_empty_random_normal_150x49_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_empty_random_normal_150x49_@2x.png │ │ ├── ic_home_empty_random_pressed_150x49_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_empty_random_pressed_150x49_@2x.png │ │ ├── ic_home_nav_follow_highlighted_60x30_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_home_nav_follow_highlighted_60x30_@2x.png │ │ │ └── ic_home_nav_follow_highlighted_60x30_@3x.png │ │ ├── ic_home_nav_follow_normal_32x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_follow_normal_32x15_@3x.png │ │ ├── ic_home_nav_follow_normal_32x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_follow_normal_32x16_@2x.png │ │ ├── ic_home_nav_recommend_highlighted_60x30_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_home_nav_recommend_highlighted_60x30_@2x.png │ │ │ └── ic_home_nav_recommend_highlighted_60x30_@3x.png │ │ ├── ic_home_nav_recommend_normal_32x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_recommend_normal_32x15_@3x.png │ │ ├── ic_home_nav_recommend_normal_32x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_recommend_normal_32x16_@2x.png │ │ ├── ic_home_nav_search_normal_19x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_search_normal_19x19_@2x.png │ │ ├── ic_home_nav_search_pressed_19x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_search_pressed_19x19_@2x.png │ │ ├── ic_home_nav_update_highlighted_60x30_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_home_nav_update_highlighted_60x30_@2x.png │ │ │ └── ic_home_nav_update_highlighted_60x30_@3x.png │ │ ├── ic_home_nav_update_normal_33x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_update_normal_33x16_@3x.png │ │ ├── ic_home_nav_update_normal_34x17_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_nav_update_normal_34x17_@2x.png │ │ ├── ic_home_newbie_feed_157x94_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_home_newbie_feed_157x94_@2x.png │ │ │ └── ic_home_newbie_feed_157x94_@3x.png │ │ ├── ic_home_share_normal_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_share_normal_15x15_@2x.png │ │ └── ic_home_share_pressed_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_home_share_pressed_15x15_@2x.png │ │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-700-568h@2x.png │ │ ├── LaunchImage-700-Portrait@2x~ipad.png │ │ ├── LaunchImage-700-Portrait~ipad.png │ │ ├── LaunchImage-700@2x-1.png │ │ ├── LaunchImage-800-667h@2x.png │ │ └── LaunchImage-800-Portrait-736h@3x.png │ │ ├── album │ │ ├── Contents.json │ │ ├── ic_album_close_7x4_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_close_7x4_@2x.png │ │ ├── ic_album_comment_normal_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_comment_normal_15x15_@2x.png │ │ ├── ic_album_mask_1x40_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_mask_1x40_@2x.png │ │ ├── ic_album_nav_back_normal_11x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_nav_back_normal_11x19_@2x.png │ │ ├── ic_album_nav_back_pressed_11x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_nav_back_pressed_11x19_@2x.png │ │ ├── ic_album_nav_follow_normal_53x27_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_nav_follow_normal_53x27_@2x.png │ │ ├── ic_album_nav_follow_pressed_53x27_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_nav_follow_pressed_53x27_@2x.png │ │ ├── ic_album_nav_followed_normal_53x27_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_nav_followed_normal_53x27_@2x.png │ │ ├── ic_album_nav_followed_pressed_53x27_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_nav_followed_pressed_53x27_@2x.png │ │ ├── ic_album_open_7x4_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_open_7x4_@2x.png │ │ ├── ic_album_praise_normal_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_praise_normal_15x15_@2x.png │ │ ├── ic_album_sort_ascending-1_7x4_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_sort_ascending-1_7x4_@2x.png │ │ ├── ic_album_sort_ascending_11x11_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_sort_ascending_11x11_@2x.png │ │ ├── ic_album_sort_descending_11x11_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_album_sort_descending_11x11_@2x.png │ │ └── ic_pull_refresh_arrow_22x22_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_pull_refresh_arrow_22x22_@2x.png │ │ ├── author │ │ ├── Contents.json │ │ ├── ic_author_info_download_22x22_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_author_info_download_22x22_@2x.png │ │ ├── ic_author_info_headportrait_50x50_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_author_info_headportrait_50x50_@2x.png │ │ ├── ic_author_info_headportrait_v_78x78_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_author_info_headportrait_v_78x78_@2x.png │ │ │ └── ic_author_info_headportrait_v_78x78_@3x.png │ │ ├── ic_author_info_link_22x22_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_author_info_link_22x22_@2x.png │ │ ├── ic_author_info_wechat_22x22_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_author_info_wechat_22x22_@2x.png │ │ ├── ic_author_info_weibo_22x22_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_author_info_weibo_22x22_@2x.png │ │ ├── ic_autor_nofeed_author_160x135_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_autor_nofeed_author_160x135_@2x.png │ │ │ └── ic_autor_nofeed_author_160x135_@3x.png │ │ ├── ic_autor_nofeed_user_160x135_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_autor_nofeed_user_160x135_@2x.png │ │ │ └── ic_autor_nofeed_user_160x135_@3x.png │ │ ├── ic_common_placeholder_author_comic_177x100_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_placeholder_author_comic_177x100_@2x.png │ │ └── ic_details_top_auther_headportrait_v_45x45_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_details_top_auther_headportrait_v_45x45_@2x.png │ │ │ └── ic_details_top_auther_headportrait_v_45x45_@3x.png │ │ ├── bg │ │ ├── 6_clock_191x234_.imageset │ │ │ ├── 6_clock_191x234_@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── bg_6_clock_20x20_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_6_clock_20x20_@2x.png │ │ ├── bg_button_login_longest_10x10_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_button_login_longest_10x10_@2x.png │ │ ├── bg_button_login_weibo_6x6_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_button_login_weibo_6x6_@2x.png │ │ ├── bg_button_signup_repeat_6x6_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_button_signup_repeat_6x6_@2x.png │ │ ├── bg_button_signup_waitrepeat_6x6_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_button_signup_waitrepeat_6x6_@2x.png │ │ ├── bg_home_nav_logo_95x32_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_home_nav_logo_95x32_@2x.png │ │ ├── bg_personal_320x150_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_personal_320x150_@2x.png │ │ └── bg_searchbar_textfield_49x28_.imageset │ │ │ ├── Contents.json │ │ │ └── bg_searchbar_textfield_49x28_@2x.png │ │ ├── cache │ │ ├── Contents.json │ │ ├── cache_guide_350x452_.imageset │ │ │ ├── Contents.json │ │ │ ├── cache_guide_350x452_@2x.png │ │ │ └── cache_guide_350x452_@3x.png │ │ ├── comic_not_cached_255x323_.imageset │ │ │ ├── Contents.json │ │ │ ├── comic_not_cached_255x323_@2x.png │ │ │ └── comic_not_cached_255x323_@3x.png │ │ ├── ic_cache_push_no_normal_93x29_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_cache_push_no_normal_93x29_@2x.png │ │ │ └── ic_cache_push_no_normal_93x29_@3x.png │ │ ├── ic_cache_push_no_pressed_93x29_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_cache_push_no_pressed_93x29_@2x.png │ │ │ └── ic_cache_push_no_pressed_93x29_@3x.png │ │ ├── ic_cache_push_ok_normal_93x29_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_cache_push_ok_normal_93x29_@2x.png │ │ │ └── ic_cache_push_ok_normal_93x29_@3x.png │ │ └── ic_cache_push_ok_pressed_93x29_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_cache_push_ok_pressed_93x29_@2x.png │ │ │ └── ic_cache_push_ok_pressed_93x29_@3x.png │ │ ├── common │ │ ├── Contents.json │ │ ├── common_horizontal_separator_2x2_.imageset │ │ │ ├── Contents.json │ │ │ └── common_horizontal_separator_2x2_@2x.png │ │ ├── common_vertical_separator_2x2_.imageset │ │ │ ├── Contents.json │ │ │ └── common_vertical_separator_2x2_@2x.png │ │ ├── ic_comment_action_arrow_normal_12x7_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_action_arrow_normal_12x7_@2x.png │ │ ├── ic_comment_headportrait_45x45_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_headportrait_45x45_@2x.png │ │ ├── ic_comment_reload_normal_120x49_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_reload_normal_120x49_@2x.png │ │ ├── ic_comment_reload_pressed_120x49_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_reload_pressed_120x49_@2x.png │ │ ├── ic_common_comment_normal_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_comment_normal_15x15_@2x.png │ │ ├── ic_common_comment_pressed_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_comment_pressed_15x15_@2x.png │ │ ├── ic_common_loading_l_200x200_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_loading_l_200x200_@2x.png │ │ ├── ic_common_mask_320x53_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_mask_320x53_@2x.png │ │ ├── ic_common_placeholder_l_120x38_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_placeholder_l_120x38_@2x.png │ │ ├── ic_common_placeholder_m_92x29_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_placeholder_m_92x29_@2x.png │ │ ├── ic_common_placeholder_s_73x23_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_placeholder_s_73x23_@2x.png │ │ ├── ic_common_praise_normal_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_praise_normal_15x15_@2x.png │ │ ├── ic_common_praise_pressed_15x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_common_praise_pressed_15x15_@2x.png │ │ └── ic_personal_avatar_83x83_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_personal_avatar_83x83_@2x.png │ │ ├── details │ │ ├── Contents.json │ │ ├── ic_details_comment_normal_37x37_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_comment_normal_37x37_@2x.png │ │ ├── ic_details_comment_pressed_37x37_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_comment_pressed_37x37_@2x.png │ │ ├── ic_details_divide_0x20_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_divide_0x20_@3x.png │ │ ├── ic_details_divide_0x30_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_divide_0x30_@2x.png │ │ ├── ic_details_next_normal_24x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_next_normal_24x24_@2x.png │ │ ├── ic_details_next_pressed_24x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_next_pressed_24x24_@2x.png │ │ ├── ic_details_praise_normal_37x37_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_praise_normal_37x37_@2x.png │ │ ├── ic_details_praise_pressed_37x37_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_praise_pressed_37x37_@2x.png │ │ ├── ic_details_prev_normal_24x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_prev_normal_24x24_@2x.png │ │ ├── ic_details_prev_pressed_24x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_prev_pressed_24x24_@2x.png │ │ ├── ic_details_share_normal_37x37_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_share_normal_37x37_@2x.png │ │ ├── ic_details_share_pressed_37x37_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_share_pressed_37x37_@2x.png │ │ ├── ic_details_toolbar_comment_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_comment_normal_21x21_@2x.png │ │ ├── ic_details_toolbar_comment_pessed_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_comment_pessed_21x21_@2x.png │ │ ├── ic_details_toolbar_praise_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_praise_normal_21x21_@2x.png │ │ ├── ic_details_toolbar_praise_pressed_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_praise_pressed_21x21_@2x.png │ │ ├── ic_details_toolbar_share_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_share_normal_21x21_@2x.png │ │ ├── ic_details_toolbar_share_pressed_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_share_pressed_21x21_@2x.png │ │ ├── ic_details_toolbar_write_comment_16x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_toolbar_write_comment_16x16_@2x.png │ │ ├── ic_details_top_collection_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_top_collection_normal_21x21_@2x.png │ │ └── ic_details_top_collection_prressed_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_details_top_collection_prressed_21x21_@2x.png │ │ ├── discover │ │ ├── Contents.json │ │ ├── ic_discover_Leaderboard_22x22_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_discover_Leaderboard_22x22_@2x.png │ │ │ └── ic_discover_Leaderboard_22x22_@3x.png │ │ ├── ic_discover_contribute-articles_355x54_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_discover_contribute-articles_355x54_@2x.png │ │ │ └── ic_discover_contribute-articles_355x54_@3x.png │ │ ├── ic_discover_more-pressed_22x22_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_discover_more-pressed_22x22_@2x.png │ │ │ └── ic_discover_more-pressed_22x22_@3x.png │ │ ├── ic_discover_more_22x22_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_discover_more_22x22_@2x.png │ │ │ └── ic_discover_more_22x22_@3x.png │ │ ├── ic_discover_nav_find_highlighted_32x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_find_highlighted_32x15_@3x.png │ │ ├── ic_discover_nav_find_highlighted_32x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_find_highlighted_32x16_@2x.png │ │ ├── ic_discover_nav_fine_normal_32x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_fine_normal_32x15_@3x.png │ │ ├── ic_discover_nav_fine_normal_32x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_fine_normal_32x16_@2x.png │ │ ├── ic_discover_nav_hot_highlighted_32x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_hot_highlighted_32x15_@3x.png │ │ ├── ic_discover_nav_hot_highlighted_32x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_hot_highlighted_32x16_@2x.png │ │ ├── ic_discover_nav_hot_normal_32x15_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_hot_normal_32x15_@3x.png │ │ ├── ic_discover_nav_hot_normal_32x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_hot_normal_32x16_@2x.png │ │ ├── ic_discover_nav_search_normal_19x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_search_normal_19x19_@2x.png │ │ ├── ic_discover_nav_search_pressed_19x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_discover_nav_search_pressed_19x19_@2x.png │ │ └── ic_discover_time_15x15_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_discover_time_15x15_@2x.png │ │ │ └── ic_discover_time_15x15_@3x.png │ │ ├── ic_new_comic_placeholder_s_355x149_.imageset │ │ ├── Contents.json │ │ └── ic_new_comic_placeholder_s_355x149_@2x.png │ │ ├── line │ │ ├── Contents.json │ │ ├── line_#aeaeae_0x0_.imageset │ │ │ ├── Contents.json │ │ │ └── line_#aeaeae_0x0_@2x.png │ │ └── line_#e1e1e1_0x0_.imageset │ │ │ ├── Contents.json │ │ │ └── line_#e1e1e1_0x0_@2x.png │ │ ├── login │ │ ├── Contents.json │ │ ├── ic_login_QQ_40x55_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_login_QQ_40x55_@2x.png │ │ │ └── ic_login_QQ_40x55_@3x.png │ │ ├── ic_login_QQ_pressed_40x55_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_login_QQ_pressed_40x55_@2x.png │ │ │ └── ic_login_QQ_pressed_40x55_@3x.png │ │ ├── ic_login_invisible_171x137_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_invisible_171x137_@2x.png │ │ ├── ic_login_password_highlighted_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_password_highlighted_21x21_@2x.png │ │ ├── ic_login_password_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_password_normal_21x21_@2x.png │ │ ├── ic_login_submit_bg_normal_41x42_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_submit_bg_normal_41x42_@2x.png │ │ ├── ic_login_submit_bg_pressed_41x42_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_submit_bg_pressed_41x42_@2x.png │ │ ├── ic_login_user_highlighted_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_user_highlighted_21x21_@2x.png │ │ ├── ic_login_user_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_user_normal_21x21_@2x.png │ │ ├── ic_login_visible_171x137_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_visible_171x137_@2x.png │ │ ├── ic_login_weibo_40x55_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_login_weibo_40x55_@2x.png │ │ │ └── ic_login_weibo_40x55_@3x.png │ │ ├── ic_login_weibo_pressed_40x55_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_login_weibo_pressed_40x55_@2x.png │ │ │ └── ic_login_weibo_pressed_40x55_@3x.png │ │ ├── ic_login_weixin_40x55_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_login_weixin_40x55_@2x.png │ │ │ └── ic_login_weixin_40x55_@3x.png │ │ ├── ic_login_weixin_pressed_40x55_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_weixin_pressed_40x55_@2x.png │ │ ├── ic_login_weixin_presssed_40x55_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login_weixin_presssed_40x55_@3x.png │ │ ├── ic_signup_logo_136x48_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_signup_logo_136x48_@2x.png │ │ ├── ic_signup_user_highlighted_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_signup_user_highlighted_21x21_@2x.png │ │ └── ic_signup_user_normal_21x21_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_signup_user_normal_21x21_@2x.png │ │ ├── me │ │ ├── Contents.json │ │ ├── ic_me_follow_normal_50x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_follow_normal_50x24_@2x.png │ │ ├── ic_me_follow_pressed_50x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_follow_pressed_50x24_@2x.png │ │ ├── ic_me_item_collection_comic_20x20_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_item_collection_comic_20x20_@2x.png │ │ ├── ic_me_item_collection_topic_20x20_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_item_collection_topic_20x20_@2x.png │ │ ├── ic_me_item_message_20x20_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_item_message_20x20_@2x.png │ │ ├── ic_me_item_setting_20x20_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_item_setting_20x20_@2x.png │ │ ├── ic_me_more_arrow_normal_7x12_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_more_arrow_normal_7x12_@2x.png │ │ └── ic_me_notlogin_50x50_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_me_notlogin_50x50_@2x.png │ │ ├── more │ │ └── Contents.json │ │ ├── nav │ │ ├── Contents.json │ │ ├── ic_nav_back_normal_11x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_back_normal_11x19_@2x.png │ │ ├── ic_nav_back_pressed_11x19_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_back_pressed_11x19_@2x.png │ │ ├── ic_nav_close_normal_16x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_close_normal_16x16_@2x.png │ │ ├── ic_nav_close_pressed_16x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_close_pressed_16x16_@2x.png │ │ ├── ic_nav_delete_normal_17x17_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_delete_normal_17x17_@2x.png │ │ ├── ic_nav_delete_pressed_17x17_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_delete_pressed_17x17_@2x.png │ │ ├── ic_nav_details_album_normal_24x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_details_album_normal_24x24_@2x.png │ │ ├── ic_nav_details_album_pressed_24x24_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_details_album_pressed_24x24_@2x.png │ │ ├── ic_nav_second_back_normal_17x17_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_second_back_normal_17x17_@2x.png │ │ └── ic_nav_second_back_pressed_17x17_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_nav_second_back_pressed_17x17_@2x.png │ │ ├── other │ │ ├── Contents.json │ │ └── no_data_footer_375x98_.imageset │ │ │ ├── Contents.json │ │ │ └── no_data_footer_375x98_@2x.png │ │ ├── progress │ │ ├── Contents.json │ │ ├── progress_bg.imageset │ │ │ ├── Contents.json │ │ │ ├── bg_bar_time@2x.png │ │ │ └── progress_bg.png │ │ ├── progress_dot.imageset │ │ │ ├── Contents.json │ │ │ ├── pic_point_white.png │ │ │ └── pic_point_white@2x.png │ │ ├── progress_left.imageset │ │ │ ├── Contents.json │ │ │ ├── bar_blue-1.png │ │ │ └── bar_blue.png │ │ ├── progress_point.imageset │ │ │ ├── Contents.json │ │ │ ├── button_drag_white.png │ │ │ └── button_drag_white@2x.png │ │ └── progress_right.imageset │ │ │ ├── Contents.json │ │ │ ├── bar_time_default.png │ │ │ └── bar_time_default@2x.png │ │ ├── search │ │ ├── Contents.json │ │ ├── ic_search_delete_normal_11x11_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search_delete_normal_11x11_@2x.png │ │ ├── ic_search_delete_pressed_11x11_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search_delete_pressed_11x11_@2x.png │ │ ├── ic_search_empty_82x104_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search_empty_82x104_@2x.png │ │ ├── ic_search_searchbar_delete_normal_14x14_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search_searchbar_delete_normal_14x14_@2x.png │ │ ├── ic_search_searchbar_delete_pressed_14x14_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search_searchbar_delete_pressed_14x14_@2x.png │ │ ├── ic_search_searchbar_search_13x13_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_search_searchbar_search_13x13_@2x.png │ │ │ └── ic_search_searchbar_search_13x13_@3x.png │ │ ├── ic_search_time_14x14_.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_search_time_14x14_@2x.png │ │ │ └── ic_search_time_14x14_@3x.png │ │ └── ic_searchbar_15x16_.imageset │ │ │ ├── Contents.json │ │ │ └── ic_searchbar_15x16_@2x.png │ │ └── tabbar │ │ ├── Contents.json │ │ ├── Tabbar-Bg_2x45_.imageset │ │ ├── Contents.json │ │ └── Tabbar-Bg_2x45_@2x.png │ │ ├── ic_tabbar_discover_normal_30x30_-1.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_discover_normal_30x30_@2x.png │ │ └── ic_tabbar_discover_normal_30x30_@3x.png │ │ ├── ic_tabbar_discover_normal_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_discover_normal_30x30_@2x.png │ │ └── ic_tabbar_discover_normal_30x30_@3x.png │ │ ├── ic_tabbar_discover_pressed_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_discover_pressed_30x30_@2x.png │ │ └── ic_tabbar_discover_pressed_30x30_@3x.png │ │ ├── ic_tabbar_home_normal_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_home_normal_30x30_@2x.png │ │ └── ic_tabbar_home_normal_30x30_@3x.png │ │ ├── ic_tabbar_home_pressed_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_home_pressed_30x30_@2x.png │ │ └── ic_tabbar_home_pressed_30x30_@3x.png │ │ ├── ic_tabbar_me_normal_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_me_normal_30x30_@2x.png │ │ └── ic_tabbar_me_normal_30x30_@3x.png │ │ ├── ic_tabbar_me_pressed_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_me_pressed_30x30_@2x.png │ │ └── ic_tabbar_me_pressed_30x30_@3x.png │ │ ├── ic_tabbar_media_normal_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_media_normal_30x30_@2x.png │ │ └── ic_tabbar_media_normal_30x30_@3x.png │ │ └── ic_tabbar_media_pressed_30x30_.imageset │ │ ├── Contents.json │ │ ├── ic_tabbar_media_pressed_30x30_@2x.png │ │ └── ic_tabbar_media_pressed_30x30_@3x.png └── Tools │ ├── DateManager.h │ ├── DateManager.m │ ├── ModelCacheManager.h │ ├── ModelCacheManager.m │ ├── NetWorkManager.h │ ├── NetWorkManager.m │ ├── UserInfoManager.h │ └── UserInfoManager.m ├── main.m └── 项目截图 ├── 个人中心.png ├── 主页.png ├── 作品详情.png ├── 作者信息.png ├── 作者动态.png ├── 发现.png ├── 搜索.png ├── 漫画详情.png └── 评论详情.png /AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // DCWebPicScrollView 4 | // 5 | // Created by dengchen on 15/12/4. 6 | // Copyright © 2015年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, ‘7.0’ 3 | # Uncomment this line if you're using Swift 4 | # use_frameworks! 5 | 6 | target 'kuaikanCartoon' do 7 | 8 | pod ’SDWebImage/WebP’ 9 | pod ‘MJRefresh’ 10 | pod ‘AFNetworking’ 11 | pod ‘Masonry’ 12 | pod ‘MJExtension’ 13 | pod ‘JGProgressHUD’ 14 | pod ‘UITableView+FDTemplateLayoutCell’ 15 | pod ‘UMengAnalytics’ 16 | 17 | end 18 | 19 | -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUD-Defines.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD-Defines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDErrorIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDErrorIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDFadeAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDImageIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDImageIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDPieIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDPieIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDRingIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDRingIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDIndexPathHeightCache.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDIndexPathHeightCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDKeyedHeightCache.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDKeyedHeightCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDTemplateLayoutCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCellDebug.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDTemplateLayoutCellDebug.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/alphai.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/alphai.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/backward_references.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/backward_references.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/bit_reader.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/bit_reader_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/bit_writer.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_writer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/color_cache.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/color_cache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/common.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/common.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/cost.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/cost.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/decode_vp8.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/decode_vp8.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/delta_palettization.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/delta_palettization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/dsp.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/dsp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/endian_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/endian_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/filters.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/filters.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/histogram.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/histogram.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/huffman.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/huffman_encode.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman_encode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/lossless.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/lossless.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/mips_macro.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/muxi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/mux/muxi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/neon.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/neon.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/quant_levels.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/quant_levels_dec.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels_dec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/random.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/random.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/rescaler.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/rescaler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/thread.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/thread.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/utils.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/utils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/vp8enci.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/vp8enci.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/vp8i.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8i.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/vp8li.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8li.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/decode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/decode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/demux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/demux.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/encode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/encode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/extras.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/extras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/format_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/format_constants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/mux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/mux_types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux_types.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webp/types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/types.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/webpi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/webpi.h -------------------------------------------------------------------------------- /Pods/Headers/Private/libwebp/yuv.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/yuv.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUD-Defines.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD-Defines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDErrorIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDErrorIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDFadeAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDFadeZoomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDImageIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDImageIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndeterminateIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDPieIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDPieIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDRingIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDRingIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h: -------------------------------------------------------------------------------- 1 | ../../../JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUDSuccessIndicatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshComponent.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshFooter.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UITableView+FDTemplateLayoutCell/UITableView+FDIndexPathHeightCache.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDIndexPathHeightCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UITableView+FDTemplateLayoutCell/UITableView+FDKeyedHeightCache.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDKeyedHeightCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDTemplateLayoutCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCellDebug.h: -------------------------------------------------------------------------------- 1 | ../../../UITableView+FDTemplateLayoutCell/Classes/UITableView+FDTemplateLayoutCellDebug.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UMengAnalytics/UMMobClick/MobClick.h: -------------------------------------------------------------------------------- 1 | ../../../../UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Versions/A/Headers/MobClick.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UMengAnalytics/UMMobClick/MobClickGameAnalytics.h: -------------------------------------------------------------------------------- 1 | ../../../../UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Versions/A/Headers/MobClickGameAnalytics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/UMengAnalytics/UMMobClick/MobClickSocialAnalytics.h: -------------------------------------------------------------------------------- 1 | ../../../../UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Versions/A/Headers/MobClickSocialAnalytics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/alphai.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/alphai.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/backward_references.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/backward_references.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/bit_reader.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/bit_reader_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_reader_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/bit_writer.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/bit_writer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/color_cache.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/color_cache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/common.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/common.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/cost.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/cost.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/decode_vp8.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/decode_vp8.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/delta_palettization.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/delta_palettization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/dsp.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/dsp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/endian_inl.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/endian_inl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/filters.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/filters.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/histogram.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/histogram.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/huffman.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/huffman_encode.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/huffman_encode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/lossless.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/lossless.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/mips_macro.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/muxi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/mux/muxi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/neon.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/neon.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/quant_levels.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/quant_levels_dec.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/quant_levels_dec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/random.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/random.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/rescaler.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/rescaler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/thread.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/thread.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/utils.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/utils/utils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/vp8enci.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/enc/vp8enci.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/vp8i.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8i.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/vp8li.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/vp8li.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/decode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/decode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/demux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/demux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/encode.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/encode.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/extras.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/extras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/format_constants.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/format_constants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/mux.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/mux_types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/mux_types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webp/types.h: -------------------------------------------------------------------------------- 1 | ../../../../libwebp/src/webp/types.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/webpi.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dec/webpi.h -------------------------------------------------------------------------------- /Pods/Headers/Public/libwebp/yuv.h: -------------------------------------------------------------------------------- 1 | ../../../libwebp/src/dsp/yuv.h -------------------------------------------------------------------------------- /Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error.png -------------------------------------------------------------------------------- /Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@2x.png -------------------------------------------------------------------------------- /Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_error@3x.png -------------------------------------------------------------------------------- /Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success.png -------------------------------------------------------------------------------- /Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@2x.png -------------------------------------------------------------------------------- /Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/JGProgressHUD/JGProgressHUD/JGProgressHUD/JGProgressHUD Resources.bundle/jg_hud_success@3x.png -------------------------------------------------------------------------------- /Pods/MJExtension/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshFooter.h" 10 | 11 | @interface MJRefreshBackFooter : MJRefreshFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #ifndef TARGET_OS_IOS 6 | #define TARGET_OS_IOS TARGET_OS_IPHONE 7 | #endif 8 | 9 | #ifndef TARGET_OS_WATCH 10 | #define TARGET_OS_WATCH 0 11 | #endif 12 | 13 | #ifndef TARGET_OS_TV 14 | #define TARGET_OS_TV 0 15 | #endif 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/JGProgressHUD/JGProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_JGProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_JGProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/JGProgressHUD/JGProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJExtension : NSObject 3 | @end 4 | @implementation PodsDummy_MJExtension 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJExtension/MJExtension-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-kuaikanCartoon/Pods-kuaikanCartoon-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_kuaikanCartoon : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_kuaikanCartoon 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_UITableView_FDTemplateLayoutCell : NSObject 3 | @end 4 | @implementation PodsDummy_UITableView_FDTemplateLayoutCell 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/UITableView+FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/libwebp/libwebp-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_libwebp : NSObject 3 | @end 4 | @implementation PodsDummy_libwebp 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/libwebp/libwebp-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/UMMobClick: -------------------------------------------------------------------------------- 1 | Versions/Current/UMMobClick -------------------------------------------------------------------------------- /Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Versions/A/UMMobClick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Versions/A/UMMobClick -------------------------------------------------------------------------------- /Pods/UMengAnalytics/umsdk_IOS_analyics_idfa_v4.0.0/UMMobClick.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /kuaikanCartoon.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /kuaikanCartoon.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /kuaikanCartoon.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /kuaikanCartoon.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /kuaikanCartoon.xcworkspace/xcuserdata/keenteam.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon.xcworkspace/xcuserdata/keenteam.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /kuaikanCartoon/AppDelegate.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #import 5 | 6 | @interface AppDelegate : UIResponder 7 | 8 | @property (strong, nonatomic) UIWindow *window; 9 | 10 | @end 11 | 12 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/AuthorStatus(作者动态)/Controllers/AuthorStatusViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AuthorStatusViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/7/2. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface AuthorStatusViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/BaseClasses(基类)/Controllers/BaseNavigationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseNavigationController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/6/24. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BaseNavigationController : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Controllers/FindingsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FindingsViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/4/30. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BaseViewController.h" 11 | 12 | @interface FindingsViewController : BaseViewController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Models/bannersModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // bannersModel.m 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/16. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "bannersModel.h" 10 | 11 | @implementation bannersModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Views/FindHeaderSectionView.h: -------------------------------------------------------------------------------- 1 | // 2 | // FindHeaderSectionView.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/15. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FindHeaderSectionView : UIView 12 | 13 | @property (nonatomic,copy) NSString *title; 14 | 15 | @property (nonatomic,copy) void (^moreOnClick)(); 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Views/GuanFangHuoDongCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // GuanFangHuoDongCell.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/16. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | 13 | @interface GuanFangHuoDongCell : UITableViewCell 14 | 15 | @property (nonatomic,copy) NSArray *topics; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Views/RenQiBiaoShengCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RenQiBiaoShengCell.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/16. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface RenQiBiaoShengCell : UITableViewCell 13 | 14 | @property (nonatomic,copy) NSArray *topics; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Views/XinZuoCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // XinZuoCell.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/16. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XinZuoCell : UITableViewCell 12 | 13 | @property (nonatomic,copy) NSArray *topics; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Findings(发现)/Views/ZhuBianLiTuiCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZhuBianLiTuiCell.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/16. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ZhuBianLiTuiCell : UITableViewCell 12 | 13 | @property (nonatomic,copy) NSArray *topics; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Home(主页)/Controllers/HomeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // HomeViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/4/30. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BaseViewController.h" 11 | 12 | @interface HomeViewController : BaseViewController 13 | 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Home(主页)/Models/topicModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // topicModel.m 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/5. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "topicModel.h" 10 | 11 | @implementation topicModel 12 | 13 | 14 | @end -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Home(主页)/Models/userModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // userModel.m 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/5. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "userModel.h" 10 | 11 | @implementation userModel 12 | 13 | 14 | 15 | @end -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Home(主页)/Models/wordsModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // wordsModel.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/29. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "SummaryModel.h" 10 | 11 | @interface wordsModel : BaseModel 12 | 13 | @property (nonatomic,strong) NSMutableArray *comics; 14 | 15 | @property (nonatomic,strong) NSNumber *since; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Home(主页)/Views/UpdateCartoonView/updateCartoonListView.h: -------------------------------------------------------------------------------- 1 | // 2 | // updateCartoonListView.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/3. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface updateCartoonListView : UICollectionView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Main(入口)/Controllers/GuideViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // GuideViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/7/16. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface GuideViewController : UIViewController 12 | 13 | 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Main(入口)/Controllers/MainTabBarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MainTabBarController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/4/30. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MainTabbar.h" 11 | 12 | @interface MainTabBarController : UITabBarController 13 | 14 | - (void)setHidesBottomBar:(BOOL)hidesBottomBar; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Personal Center(个人中心)/Controllers/MyCollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MyCollectionViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/6/8. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "BaseTableViewController.h" 10 | 11 | @interface MyCollectionViewController : BaseTableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Personal Center(个人中心)/Controllers/MyFellowViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MyFellowViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/6/7. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "BaseTableViewController.h" 10 | 11 | @interface MyFellowViewController : BaseTableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Personal Center(个人中心)/Controllers/MyMessageViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MyMessageViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/6/6. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "BaseTableViewController.h" 10 | 11 | @interface MyMessageViewController : BaseTableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Personal Center(个人中心)/Controllers/PersonalViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // PersonalViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/4/30. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BaseViewController.h" 11 | 12 | @interface PersonalViewController : UITableViewController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Personal Center(个人中心)/Controllers/SettingTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SettingTableViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/26. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SettingTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/Personal Center(个人中心)/Models/FellowTopicsModel.h: -------------------------------------------------------------------------------- 1 | // 2 | // FellowTopicsModel.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/6/7. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "topicModel.h" 10 | 11 | @class topicInfoModel; 12 | 13 | @interface FellowTopicsModel : topicModel 14 | 15 | @property (nonatomic,copy) NSString *latest_comic_title; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/AuthorInfoPage(作者信息页面)/Controllers/AuthorInfoViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AuthorInfoViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/6/17. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface AuthorInfoViewController : BaseViewController 12 | 13 | @property (nonatomic,copy) NSString *authorID; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/AuthorInfoPage(作者信息页面)/Views/AuthorProfileView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AuthorProfileView.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/7/14. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AuthorProfileView : UIView 12 | 13 | @property (nonatomic,weak,readonly) UILabel *profileText; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/CartoonDetail(漫画详情)/Models/bannerInfoModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // bannerInfoModel.m 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/5. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "bannerInfoModel.h" 10 | 11 | @implementation bannerInfoModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/CartoonDetail(漫画详情)/Views/CartoonContentCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // CartoonContentCell.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/5. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CartoonContentCell : UITableViewCell 12 | 13 | @property (nonatomic,strong,readonly) UIImageView *content; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/LoginPage(登录页面)/LoginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LoginViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/23. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @class UserInfoManager; 12 | 13 | @interface LoginViewController : BaseViewController 14 | 15 | + (void)show; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/LoginPage(登录页面)/registerViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // registerViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/25. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "BaseViewController.h" 12 | 13 | @interface registerViewController : BaseViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/SearchPage(搜索页面)/Controllers/SearchViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SearchTableViewController.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/19. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "BaseViewController.h" 11 | 12 | @interface SearchViewController : BaseViewController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/SearchPage(搜索页面)/Views/NoResultTipView.h: -------------------------------------------------------------------------------- 1 | // 2 | // NoResultTipView.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/22. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NoResultTipView : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Classes/PublicViewPage(公共页面)/WorksDetail(作品详情)/Models/CartonnWordsModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // wordsModel.m 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/8. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import "CartonnWordsModel.h" 10 | 11 | @implementation CartonnWordsModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/Extension/UIColor+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+Extension.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/5/2. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor (Extension) 12 | 13 | 14 | + (UIColor *)colorWithHexString:(NSString *)color; 15 | + (UIColor *)colorWithHexString:(NSString *)color alpha:(CGFloat)alpha; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /kuaikanCartoon/Extension/UIImage+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+Extension.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/4/30. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (Extension) 12 | 13 | - (UIImage *)clipEllipseImage; 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /kuaikanCartoon/Extension/UIImageView+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImageView+Extension.h 3 | // kuaikanCartoon 4 | // 5 | // Created by dengchen on 16/7/8. 6 | // Copyright © 2016年 name. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImageView (Extension) 12 | 13 | - (void)setRoundImageWithURL:(NSString *)url placeImageName:(NSString *)placeImage; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/Classes/ZLPhotoBrowser/Views/ZLPhotoPickerCustomToolBarView.m: -------------------------------------------------------------------------------- 1 | // 2 | // ZLPhotoPickerCustomToolBarView.m 3 | // ZLAssetsPickerDemo 4 | // 5 | // Created by 张磊 on 15-1-26. 6 | // Copyright (c) 2015年 com.zixue101.www. All rights reserved. 7 | // 8 | 9 | #import "ZLPhotoPickerCustomToolBarView.h" 10 | 11 | @implementation ZLPhotoPickerCustomToolBarView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/Classes/ZLPhotoPicker/Models/ZLPhotoPickerGroup.m: -------------------------------------------------------------------------------- 1 | // 2 | // PickerGroup.m 3 | // ZLAssetsPickerDemo 4 | // 5 | // Created by 张磊 on 14-11-11. 6 | // Copyright (c) 2014年 com.zixue101.www. All rights reserved. 7 | // 8 | 9 | #import "ZLPhotoPickerGroup.h" 10 | 11 | @implementation ZLPhotoPickerGroup 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/Classes/ZLPhotoPicker/ViewControllers/ZLNavigationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZLNavigationController.h 3 | // ZLAssetsPickerDemo 4 | // 5 | // Created by 张磊 on 15/11/25. 6 | // Copyright © 2015年 com.zixue101.www. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ZLNavigationController : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_X.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_X@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_X@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_camera@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_no@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_no@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_no@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_no@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_yes@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_icon_image_yes@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_iconfont-tianjia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_iconfont-tianjia.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_lock@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_nav_delete_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_nav_delete_btn.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_nav_delete_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_nav_delete_btn@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_paizhao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_paizhao.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_paizhao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_paizhao@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_pc_circle_placeholder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_pc_circle_placeholder@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng2.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng2@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_shanguangdeng@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video-play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video-play@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video-play@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video-play@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_video@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_xiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_xiang.png -------------------------------------------------------------------------------- /kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_xiang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/FrameWork/ZLPhotoLib/ZLPhotoLib.bundle/zl_xiang@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-1_375x667_.imageset/guidev3-1_375x667_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-1_375x667_.imageset/guidev3-1_375x667_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-1_414x736_.imageset/guidev3-1_414x736_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-1_414x736_.imageset/guidev3-1_414x736_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-2_375x667_.imageset/guidev3-2_375x667_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-2_375x667_.imageset/guidev3-2_375x667_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-2_414x736_.imageset/guidev3-2_414x736_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-2_414x736_.imageset/guidev3-2_414x736_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-3_375x667_.imageset/guidev3-3_375x667_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-3_375x667_.imageset/guidev3-3_375x667_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-3_414x736_.imageset/guidev3-3_414x736_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Guide/guidev3-3_414x736_.imageset/guidev3-3_414x736_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/home_recommend_cell_author_15x15_.imageset/home_recommend_cell_author_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/home_recommend_cell_author_15x15_.imageset/home_recommend_cell_author_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_date_16x16_.imageset/ic_home_date_16x16_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_date_16x16_.imageset/ic_home_date_16x16_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_date_17x17_.imageset/ic_home_date_17x17_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_date_17x17_.imageset/ic_home_date_17x17_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_divide_0x20_.imageset/ic_home_divide_0x20_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_divide_0x20_.imageset/ic_home_divide_0x20_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_divide_0x30_.imageset/ic_home_divide_0x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_divide_0x30_.imageset/ic_home_divide_0x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_login_normal_120x49_.imageset/ic_home_empty_login_normal_120x49_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_login_normal_120x49_.imageset/ic_home_empty_login_normal_120x49_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_login_pressed_120x49_.imageset/ic_home_empty_login_pressed_120x49_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_login_pressed_120x49_.imageset/ic_home_empty_login_pressed_120x49_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_random_normal_150x49_.imageset/ic_home_empty_random_normal_150x49_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_random_normal_150x49_.imageset/ic_home_empty_random_normal_150x49_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_random_pressed_150x49_.imageset/ic_home_empty_random_pressed_150x49_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_empty_random_pressed_150x49_.imageset/ic_home_empty_random_pressed_150x49_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_highlighted_60x30_.imageset/ic_home_nav_follow_highlighted_60x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_highlighted_60x30_.imageset/ic_home_nav_follow_highlighted_60x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_highlighted_60x30_.imageset/ic_home_nav_follow_highlighted_60x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_highlighted_60x30_.imageset/ic_home_nav_follow_highlighted_60x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_normal_32x15_.imageset/ic_home_nav_follow_normal_32x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_normal_32x15_.imageset/ic_home_nav_follow_normal_32x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_normal_32x16_.imageset/ic_home_nav_follow_normal_32x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_follow_normal_32x16_.imageset/ic_home_nav_follow_normal_32x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_highlighted_60x30_.imageset/ic_home_nav_recommend_highlighted_60x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_highlighted_60x30_.imageset/ic_home_nav_recommend_highlighted_60x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_highlighted_60x30_.imageset/ic_home_nav_recommend_highlighted_60x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_highlighted_60x30_.imageset/ic_home_nav_recommend_highlighted_60x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_normal_32x15_.imageset/ic_home_nav_recommend_normal_32x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_normal_32x15_.imageset/ic_home_nav_recommend_normal_32x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_normal_32x16_.imageset/ic_home_nav_recommend_normal_32x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_recommend_normal_32x16_.imageset/ic_home_nav_recommend_normal_32x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_search_normal_19x19_.imageset/ic_home_nav_search_normal_19x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_search_normal_19x19_.imageset/ic_home_nav_search_normal_19x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_search_pressed_19x19_.imageset/ic_home_nav_search_pressed_19x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_search_pressed_19x19_.imageset/ic_home_nav_search_pressed_19x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_highlighted_60x30_.imageset/ic_home_nav_update_highlighted_60x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_highlighted_60x30_.imageset/ic_home_nav_update_highlighted_60x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_highlighted_60x30_.imageset/ic_home_nav_update_highlighted_60x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_highlighted_60x30_.imageset/ic_home_nav_update_highlighted_60x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_normal_33x16_.imageset/ic_home_nav_update_normal_33x16_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_normal_33x16_.imageset/ic_home_nav_update_normal_33x16_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_normal_34x17_.imageset/ic_home_nav_update_normal_34x17_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_nav_update_normal_34x17_.imageset/ic_home_nav_update_normal_34x17_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_newbie_feed_157x94_.imageset/ic_home_newbie_feed_157x94_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_newbie_feed_157x94_.imageset/ic_home_newbie_feed_157x94_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_newbie_feed_157x94_.imageset/ic_home_newbie_feed_157x94_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_newbie_feed_157x94_.imageset/ic_home_newbie_feed_157x94_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_share_normal_15x15_.imageset/ic_home_share_normal_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_share_normal_15x15_.imageset/ic_home_share_normal_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_share_pressed_15x15_.imageset/ic_home_share_pressed_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/Home/ic_home_share_pressed_15x15_.imageset/ic_home_share_pressed_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-Portrait~ipad.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700@2x-1.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_close_7x4_.imageset/ic_album_close_7x4_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_close_7x4_.imageset/ic_album_close_7x4_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_comment_normal_15x15_.imageset/ic_album_comment_normal_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_comment_normal_15x15_.imageset/ic_album_comment_normal_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_mask_1x40_.imageset/ic_album_mask_1x40_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_mask_1x40_.imageset/ic_album_mask_1x40_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_back_normal_11x19_.imageset/ic_album_nav_back_normal_11x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_back_normal_11x19_.imageset/ic_album_nav_back_normal_11x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_back_pressed_11x19_.imageset/ic_album_nav_back_pressed_11x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_back_pressed_11x19_.imageset/ic_album_nav_back_pressed_11x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_follow_normal_53x27_.imageset/ic_album_nav_follow_normal_53x27_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_follow_normal_53x27_.imageset/ic_album_nav_follow_normal_53x27_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_follow_pressed_53x27_.imageset/ic_album_nav_follow_pressed_53x27_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_follow_pressed_53x27_.imageset/ic_album_nav_follow_pressed_53x27_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_followed_normal_53x27_.imageset/ic_album_nav_followed_normal_53x27_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_followed_normal_53x27_.imageset/ic_album_nav_followed_normal_53x27_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_followed_pressed_53x27_.imageset/ic_album_nav_followed_pressed_53x27_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_nav_followed_pressed_53x27_.imageset/ic_album_nav_followed_pressed_53x27_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_open_7x4_.imageset/ic_album_open_7x4_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_open_7x4_.imageset/ic_album_open_7x4_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_praise_normal_15x15_.imageset/ic_album_praise_normal_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_praise_normal_15x15_.imageset/ic_album_praise_normal_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_sort_ascending-1_7x4_.imageset/ic_album_sort_ascending-1_7x4_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_sort_ascending-1_7x4_.imageset/ic_album_sort_ascending-1_7x4_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_sort_ascending_11x11_.imageset/ic_album_sort_ascending_11x11_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_sort_ascending_11x11_.imageset/ic_album_sort_ascending_11x11_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_sort_descending_11x11_.imageset/ic_album_sort_descending_11x11_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_album_sort_descending_11x11_.imageset/ic_album_sort_descending_11x11_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_pull_refresh_arrow_22x22_.imageset/ic_pull_refresh_arrow_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/album/ic_pull_refresh_arrow_22x22_.imageset/ic_pull_refresh_arrow_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_download_22x22_.imageset/ic_author_info_download_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_download_22x22_.imageset/ic_author_info_download_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_headportrait_50x50_.imageset/ic_author_info_headportrait_50x50_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_headportrait_50x50_.imageset/ic_author_info_headportrait_50x50_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_headportrait_v_78x78_.imageset/ic_author_info_headportrait_v_78x78_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_headportrait_v_78x78_.imageset/ic_author_info_headportrait_v_78x78_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_headportrait_v_78x78_.imageset/ic_author_info_headportrait_v_78x78_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_headportrait_v_78x78_.imageset/ic_author_info_headportrait_v_78x78_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_link_22x22_.imageset/ic_author_info_link_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_link_22x22_.imageset/ic_author_info_link_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_wechat_22x22_.imageset/ic_author_info_wechat_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_wechat_22x22_.imageset/ic_author_info_wechat_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_weibo_22x22_.imageset/ic_author_info_weibo_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_author_info_weibo_22x22_.imageset/ic_author_info_weibo_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_author_160x135_.imageset/ic_autor_nofeed_author_160x135_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_author_160x135_.imageset/ic_autor_nofeed_author_160x135_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_author_160x135_.imageset/ic_autor_nofeed_author_160x135_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_author_160x135_.imageset/ic_autor_nofeed_author_160x135_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_user_160x135_.imageset/ic_autor_nofeed_user_160x135_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_user_160x135_.imageset/ic_autor_nofeed_user_160x135_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_user_160x135_.imageset/ic_autor_nofeed_user_160x135_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_autor_nofeed_user_160x135_.imageset/ic_autor_nofeed_user_160x135_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_common_placeholder_author_comic_177x100_.imageset/ic_common_placeholder_author_comic_177x100_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_common_placeholder_author_comic_177x100_.imageset/ic_common_placeholder_author_comic_177x100_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_details_top_auther_headportrait_v_45x45_.imageset/ic_details_top_auther_headportrait_v_45x45_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_details_top_auther_headportrait_v_45x45_.imageset/ic_details_top_auther_headportrait_v_45x45_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_details_top_auther_headportrait_v_45x45_.imageset/ic_details_top_auther_headportrait_v_45x45_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/author/ic_details_top_auther_headportrait_v_45x45_.imageset/ic_details_top_auther_headportrait_v_45x45_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/6_clock_191x234_.imageset/6_clock_191x234_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/6_clock_191x234_.imageset/6_clock_191x234_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_6_clock_20x20_.imageset/bg_6_clock_20x20_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_6_clock_20x20_.imageset/bg_6_clock_20x20_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_login_longest_10x10_.imageset/bg_button_login_longest_10x10_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_login_longest_10x10_.imageset/bg_button_login_longest_10x10_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_login_weibo_6x6_.imageset/bg_button_login_weibo_6x6_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_login_weibo_6x6_.imageset/bg_button_login_weibo_6x6_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_signup_repeat_6x6_.imageset/bg_button_signup_repeat_6x6_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_signup_repeat_6x6_.imageset/bg_button_signup_repeat_6x6_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_signup_waitrepeat_6x6_.imageset/bg_button_signup_waitrepeat_6x6_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_button_signup_waitrepeat_6x6_.imageset/bg_button_signup_waitrepeat_6x6_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_home_nav_logo_95x32_.imageset/bg_home_nav_logo_95x32_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_home_nav_logo_95x32_.imageset/bg_home_nav_logo_95x32_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_personal_320x150_.imageset/bg_personal_320x150_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_personal_320x150_.imageset/bg_personal_320x150_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_searchbar_textfield_49x28_.imageset/bg_searchbar_textfield_49x28_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/bg/bg_searchbar_textfield_49x28_.imageset/bg_searchbar_textfield_49x28_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/cache_guide_350x452_.imageset/cache_guide_350x452_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/cache_guide_350x452_.imageset/cache_guide_350x452_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/cache_guide_350x452_.imageset/cache_guide_350x452_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/cache_guide_350x452_.imageset/cache_guide_350x452_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/comic_not_cached_255x323_.imageset/comic_not_cached_255x323_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/comic_not_cached_255x323_.imageset/comic_not_cached_255x323_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/comic_not_cached_255x323_.imageset/comic_not_cached_255x323_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/comic_not_cached_255x323_.imageset/comic_not_cached_255x323_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_normal_93x29_.imageset/ic_cache_push_no_normal_93x29_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_normal_93x29_.imageset/ic_cache_push_no_normal_93x29_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_normal_93x29_.imageset/ic_cache_push_no_normal_93x29_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_normal_93x29_.imageset/ic_cache_push_no_normal_93x29_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_pressed_93x29_.imageset/ic_cache_push_no_pressed_93x29_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_pressed_93x29_.imageset/ic_cache_push_no_pressed_93x29_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_pressed_93x29_.imageset/ic_cache_push_no_pressed_93x29_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_no_pressed_93x29_.imageset/ic_cache_push_no_pressed_93x29_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_normal_93x29_.imageset/ic_cache_push_ok_normal_93x29_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_normal_93x29_.imageset/ic_cache_push_ok_normal_93x29_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_normal_93x29_.imageset/ic_cache_push_ok_normal_93x29_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_normal_93x29_.imageset/ic_cache_push_ok_normal_93x29_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_pressed_93x29_.imageset/ic_cache_push_ok_pressed_93x29_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_pressed_93x29_.imageset/ic_cache_push_ok_pressed_93x29_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_pressed_93x29_.imageset/ic_cache_push_ok_pressed_93x29_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/cache/ic_cache_push_ok_pressed_93x29_.imageset/ic_cache_push_ok_pressed_93x29_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/common_horizontal_separator_2x2_.imageset/common_horizontal_separator_2x2_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/common_horizontal_separator_2x2_.imageset/common_horizontal_separator_2x2_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/common_vertical_separator_2x2_.imageset/common_vertical_separator_2x2_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/common_vertical_separator_2x2_.imageset/common_vertical_separator_2x2_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_action_arrow_normal_12x7_.imageset/ic_comment_action_arrow_normal_12x7_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_action_arrow_normal_12x7_.imageset/ic_comment_action_arrow_normal_12x7_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_headportrait_45x45_.imageset/ic_comment_headportrait_45x45_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_headportrait_45x45_.imageset/ic_comment_headportrait_45x45_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_reload_normal_120x49_.imageset/ic_comment_reload_normal_120x49_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_reload_normal_120x49_.imageset/ic_comment_reload_normal_120x49_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_reload_pressed_120x49_.imageset/ic_comment_reload_pressed_120x49_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_comment_reload_pressed_120x49_.imageset/ic_comment_reload_pressed_120x49_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_comment_normal_15x15_.imageset/ic_common_comment_normal_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_comment_normal_15x15_.imageset/ic_common_comment_normal_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_comment_pressed_15x15_.imageset/ic_common_comment_pressed_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_comment_pressed_15x15_.imageset/ic_common_comment_pressed_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_loading_l_200x200_.imageset/ic_common_loading_l_200x200_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_loading_l_200x200_.imageset/ic_common_loading_l_200x200_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_mask_320x53_.imageset/ic_common_mask_320x53_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_mask_320x53_.imageset/ic_common_mask_320x53_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_placeholder_l_120x38_.imageset/ic_common_placeholder_l_120x38_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_placeholder_l_120x38_.imageset/ic_common_placeholder_l_120x38_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_placeholder_m_92x29_.imageset/ic_common_placeholder_m_92x29_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_placeholder_m_92x29_.imageset/ic_common_placeholder_m_92x29_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_placeholder_s_73x23_.imageset/ic_common_placeholder_s_73x23_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_placeholder_s_73x23_.imageset/ic_common_placeholder_s_73x23_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_praise_normal_15x15_.imageset/ic_common_praise_normal_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_praise_normal_15x15_.imageset/ic_common_praise_normal_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_praise_pressed_15x15_.imageset/ic_common_praise_pressed_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_common_praise_pressed_15x15_.imageset/ic_common_praise_pressed_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_personal_avatar_83x83_.imageset/ic_personal_avatar_83x83_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/common/ic_personal_avatar_83x83_.imageset/ic_personal_avatar_83x83_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_comment_normal_37x37_.imageset/ic_details_comment_normal_37x37_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_comment_normal_37x37_.imageset/ic_details_comment_normal_37x37_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_comment_pressed_37x37_.imageset/ic_details_comment_pressed_37x37_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_comment_pressed_37x37_.imageset/ic_details_comment_pressed_37x37_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_divide_0x20_.imageset/ic_details_divide_0x20_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_divide_0x20_.imageset/ic_details_divide_0x20_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_divide_0x30_.imageset/ic_details_divide_0x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_divide_0x30_.imageset/ic_details_divide_0x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_next_normal_24x24_.imageset/ic_details_next_normal_24x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_next_normal_24x24_.imageset/ic_details_next_normal_24x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_next_pressed_24x24_.imageset/ic_details_next_pressed_24x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_next_pressed_24x24_.imageset/ic_details_next_pressed_24x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_praise_normal_37x37_.imageset/ic_details_praise_normal_37x37_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_praise_normal_37x37_.imageset/ic_details_praise_normal_37x37_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_praise_pressed_37x37_.imageset/ic_details_praise_pressed_37x37_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_praise_pressed_37x37_.imageset/ic_details_praise_pressed_37x37_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_prev_normal_24x24_.imageset/ic_details_prev_normal_24x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_prev_normal_24x24_.imageset/ic_details_prev_normal_24x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_prev_pressed_24x24_.imageset/ic_details_prev_pressed_24x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_prev_pressed_24x24_.imageset/ic_details_prev_pressed_24x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_share_normal_37x37_.imageset/ic_details_share_normal_37x37_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_share_normal_37x37_.imageset/ic_details_share_normal_37x37_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_share_pressed_37x37_.imageset/ic_details_share_pressed_37x37_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_share_pressed_37x37_.imageset/ic_details_share_pressed_37x37_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_comment_normal_21x21_.imageset/ic_details_toolbar_comment_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_comment_normal_21x21_.imageset/ic_details_toolbar_comment_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_comment_pessed_21x21_.imageset/ic_details_toolbar_comment_pessed_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_comment_pessed_21x21_.imageset/ic_details_toolbar_comment_pessed_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_praise_normal_21x21_.imageset/ic_details_toolbar_praise_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_praise_normal_21x21_.imageset/ic_details_toolbar_praise_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_praise_pressed_21x21_.imageset/ic_details_toolbar_praise_pressed_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_praise_pressed_21x21_.imageset/ic_details_toolbar_praise_pressed_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_share_normal_21x21_.imageset/ic_details_toolbar_share_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_share_normal_21x21_.imageset/ic_details_toolbar_share_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_share_pressed_21x21_.imageset/ic_details_toolbar_share_pressed_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_share_pressed_21x21_.imageset/ic_details_toolbar_share_pressed_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_write_comment_16x16_.imageset/ic_details_toolbar_write_comment_16x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_toolbar_write_comment_16x16_.imageset/ic_details_toolbar_write_comment_16x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_top_collection_normal_21x21_.imageset/ic_details_top_collection_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_top_collection_normal_21x21_.imageset/ic_details_top_collection_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_top_collection_prressed_21x21_.imageset/ic_details_top_collection_prressed_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/details/ic_details_top_collection_prressed_21x21_.imageset/ic_details_top_collection_prressed_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_Leaderboard_22x22_.imageset/ic_discover_Leaderboard_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_Leaderboard_22x22_.imageset/ic_discover_Leaderboard_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_Leaderboard_22x22_.imageset/ic_discover_Leaderboard_22x22_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_Leaderboard_22x22_.imageset/ic_discover_Leaderboard_22x22_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_contribute-articles_355x54_.imageset/ic_discover_contribute-articles_355x54_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_contribute-articles_355x54_.imageset/ic_discover_contribute-articles_355x54_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_contribute-articles_355x54_.imageset/ic_discover_contribute-articles_355x54_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_contribute-articles_355x54_.imageset/ic_discover_contribute-articles_355x54_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more-pressed_22x22_.imageset/ic_discover_more-pressed_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more-pressed_22x22_.imageset/ic_discover_more-pressed_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more-pressed_22x22_.imageset/ic_discover_more-pressed_22x22_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more-pressed_22x22_.imageset/ic_discover_more-pressed_22x22_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more_22x22_.imageset/ic_discover_more_22x22_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more_22x22_.imageset/ic_discover_more_22x22_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more_22x22_.imageset/ic_discover_more_22x22_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_more_22x22_.imageset/ic_discover_more_22x22_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_find_highlighted_32x15_.imageset/ic_discover_nav_find_highlighted_32x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_find_highlighted_32x15_.imageset/ic_discover_nav_find_highlighted_32x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_find_highlighted_32x16_.imageset/ic_discover_nav_find_highlighted_32x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_find_highlighted_32x16_.imageset/ic_discover_nav_find_highlighted_32x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_fine_normal_32x15_.imageset/ic_discover_nav_fine_normal_32x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_fine_normal_32x15_.imageset/ic_discover_nav_fine_normal_32x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_fine_normal_32x16_.imageset/ic_discover_nav_fine_normal_32x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_fine_normal_32x16_.imageset/ic_discover_nav_fine_normal_32x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_highlighted_32x15_.imageset/ic_discover_nav_hot_highlighted_32x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_highlighted_32x15_.imageset/ic_discover_nav_hot_highlighted_32x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_highlighted_32x16_.imageset/ic_discover_nav_hot_highlighted_32x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_highlighted_32x16_.imageset/ic_discover_nav_hot_highlighted_32x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_normal_32x15_.imageset/ic_discover_nav_hot_normal_32x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_normal_32x15_.imageset/ic_discover_nav_hot_normal_32x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_normal_32x16_.imageset/ic_discover_nav_hot_normal_32x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_hot_normal_32x16_.imageset/ic_discover_nav_hot_normal_32x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_search_normal_19x19_.imageset/ic_discover_nav_search_normal_19x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_search_normal_19x19_.imageset/ic_discover_nav_search_normal_19x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_search_pressed_19x19_.imageset/ic_discover_nav_search_pressed_19x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_nav_search_pressed_19x19_.imageset/ic_discover_nav_search_pressed_19x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_time_15x15_.imageset/ic_discover_time_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_time_15x15_.imageset/ic_discover_time_15x15_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_time_15x15_.imageset/ic_discover_time_15x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/discover/ic_discover_time_15x15_.imageset/ic_discover_time_15x15_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/ic_new_comic_placeholder_s_355x149_.imageset/ic_new_comic_placeholder_s_355x149_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/ic_new_comic_placeholder_s_355x149_.imageset/ic_new_comic_placeholder_s_355x149_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/line/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/line/line_#aeaeae_0x0_.imageset/line_#aeaeae_0x0_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/line/line_#aeaeae_0x0_.imageset/line_#aeaeae_0x0_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/line/line_#e1e1e1_0x0_.imageset/line_#e1e1e1_0x0_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/line/line_#e1e1e1_0x0_.imageset/line_#e1e1e1_0x0_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_40x55_.imageset/ic_login_QQ_40x55_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_40x55_.imageset/ic_login_QQ_40x55_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_40x55_.imageset/ic_login_QQ_40x55_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_40x55_.imageset/ic_login_QQ_40x55_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_pressed_40x55_.imageset/ic_login_QQ_pressed_40x55_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_pressed_40x55_.imageset/ic_login_QQ_pressed_40x55_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_pressed_40x55_.imageset/ic_login_QQ_pressed_40x55_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_QQ_pressed_40x55_.imageset/ic_login_QQ_pressed_40x55_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_invisible_171x137_.imageset/ic_login_invisible_171x137_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_invisible_171x137_.imageset/ic_login_invisible_171x137_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_password_highlighted_21x21_.imageset/ic_login_password_highlighted_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_password_highlighted_21x21_.imageset/ic_login_password_highlighted_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_password_normal_21x21_.imageset/ic_login_password_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_password_normal_21x21_.imageset/ic_login_password_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_submit_bg_normal_41x42_.imageset/ic_login_submit_bg_normal_41x42_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_submit_bg_normal_41x42_.imageset/ic_login_submit_bg_normal_41x42_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_submit_bg_pressed_41x42_.imageset/ic_login_submit_bg_pressed_41x42_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_submit_bg_pressed_41x42_.imageset/ic_login_submit_bg_pressed_41x42_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_user_highlighted_21x21_.imageset/ic_login_user_highlighted_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_user_highlighted_21x21_.imageset/ic_login_user_highlighted_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_user_normal_21x21_.imageset/ic_login_user_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_user_normal_21x21_.imageset/ic_login_user_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_visible_171x137_.imageset/ic_login_visible_171x137_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_visible_171x137_.imageset/ic_login_visible_171x137_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_40x55_.imageset/ic_login_weibo_40x55_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_40x55_.imageset/ic_login_weibo_40x55_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_40x55_.imageset/ic_login_weibo_40x55_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_40x55_.imageset/ic_login_weibo_40x55_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_pressed_40x55_.imageset/ic_login_weibo_pressed_40x55_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_pressed_40x55_.imageset/ic_login_weibo_pressed_40x55_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_pressed_40x55_.imageset/ic_login_weibo_pressed_40x55_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weibo_pressed_40x55_.imageset/ic_login_weibo_pressed_40x55_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_40x55_.imageset/ic_login_weixin_40x55_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_40x55_.imageset/ic_login_weixin_40x55_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_40x55_.imageset/ic_login_weixin_40x55_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_40x55_.imageset/ic_login_weixin_40x55_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_pressed_40x55_.imageset/ic_login_weixin_pressed_40x55_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_pressed_40x55_.imageset/ic_login_weixin_pressed_40x55_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_presssed_40x55_.imageset/ic_login_weixin_presssed_40x55_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_login_weixin_presssed_40x55_.imageset/ic_login_weixin_presssed_40x55_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_signup_logo_136x48_.imageset/ic_signup_logo_136x48_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_signup_logo_136x48_.imageset/ic_signup_logo_136x48_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_signup_user_highlighted_21x21_.imageset/ic_signup_user_highlighted_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_signup_user_highlighted_21x21_.imageset/ic_signup_user_highlighted_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_signup_user_normal_21x21_.imageset/ic_signup_user_normal_21x21_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/login/ic_signup_user_normal_21x21_.imageset/ic_signup_user_normal_21x21_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_follow_normal_50x24_.imageset/ic_me_follow_normal_50x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_follow_normal_50x24_.imageset/ic_me_follow_normal_50x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_follow_pressed_50x24_.imageset/ic_me_follow_pressed_50x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_follow_pressed_50x24_.imageset/ic_me_follow_pressed_50x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_collection_comic_20x20_.imageset/ic_me_item_collection_comic_20x20_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_collection_comic_20x20_.imageset/ic_me_item_collection_comic_20x20_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_collection_topic_20x20_.imageset/ic_me_item_collection_topic_20x20_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_collection_topic_20x20_.imageset/ic_me_item_collection_topic_20x20_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_message_20x20_.imageset/ic_me_item_message_20x20_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_message_20x20_.imageset/ic_me_item_message_20x20_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_setting_20x20_.imageset/ic_me_item_setting_20x20_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_item_setting_20x20_.imageset/ic_me_item_setting_20x20_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_more_arrow_normal_7x12_.imageset/ic_me_more_arrow_normal_7x12_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_more_arrow_normal_7x12_.imageset/ic_me_more_arrow_normal_7x12_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_notlogin_50x50_.imageset/ic_me_notlogin_50x50_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/me/ic_me_notlogin_50x50_.imageset/ic_me_notlogin_50x50_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/more/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_back_normal_11x19_.imageset/ic_nav_back_normal_11x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_back_normal_11x19_.imageset/ic_nav_back_normal_11x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_back_pressed_11x19_.imageset/ic_nav_back_pressed_11x19_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_back_pressed_11x19_.imageset/ic_nav_back_pressed_11x19_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_close_normal_16x16_.imageset/ic_nav_close_normal_16x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_close_normal_16x16_.imageset/ic_nav_close_normal_16x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_close_pressed_16x16_.imageset/ic_nav_close_pressed_16x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_close_pressed_16x16_.imageset/ic_nav_close_pressed_16x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_delete_normal_17x17_.imageset/ic_nav_delete_normal_17x17_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_delete_normal_17x17_.imageset/ic_nav_delete_normal_17x17_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_delete_pressed_17x17_.imageset/ic_nav_delete_pressed_17x17_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_delete_pressed_17x17_.imageset/ic_nav_delete_pressed_17x17_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_details_album_normal_24x24_.imageset/ic_nav_details_album_normal_24x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_details_album_normal_24x24_.imageset/ic_nav_details_album_normal_24x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_details_album_pressed_24x24_.imageset/ic_nav_details_album_pressed_24x24_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_details_album_pressed_24x24_.imageset/ic_nav_details_album_pressed_24x24_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_second_back_normal_17x17_.imageset/ic_nav_second_back_normal_17x17_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_second_back_normal_17x17_.imageset/ic_nav_second_back_normal_17x17_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_second_back_pressed_17x17_.imageset/ic_nav_second_back_pressed_17x17_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/nav/ic_nav_second_back_pressed_17x17_.imageset/ic_nav_second_back_pressed_17x17_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/other/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/other/no_data_footer_375x98_.imageset/no_data_footer_375x98_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/other/no_data_footer_375x98_.imageset/no_data_footer_375x98_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_bg.imageset/bg_bar_time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_bg.imageset/bg_bar_time@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_bg.imageset/progress_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_bg.imageset/progress_bg.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_dot.imageset/pic_point_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_dot.imageset/pic_point_white.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_dot.imageset/pic_point_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_dot.imageset/pic_point_white@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_left.imageset/bar_blue-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_left.imageset/bar_blue-1.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_left.imageset/bar_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_left.imageset/bar_blue.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_point.imageset/button_drag_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_point.imageset/button_drag_white.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_point.imageset/button_drag_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_point.imageset/button_drag_white@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_right.imageset/bar_time_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_right.imageset/bar_time_default.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_right.imageset/bar_time_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/progress/progress_right.imageset/bar_time_default@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_delete_normal_11x11_.imageset/ic_search_delete_normal_11x11_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_delete_normal_11x11_.imageset/ic_search_delete_normal_11x11_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_delete_pressed_11x11_.imageset/ic_search_delete_pressed_11x11_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_delete_pressed_11x11_.imageset/ic_search_delete_pressed_11x11_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_empty_82x104_.imageset/ic_search_empty_82x104_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_empty_82x104_.imageset/ic_search_empty_82x104_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_delete_normal_14x14_.imageset/ic_search_searchbar_delete_normal_14x14_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_delete_normal_14x14_.imageset/ic_search_searchbar_delete_normal_14x14_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_delete_pressed_14x14_.imageset/ic_search_searchbar_delete_pressed_14x14_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_delete_pressed_14x14_.imageset/ic_search_searchbar_delete_pressed_14x14_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_search_13x13_.imageset/ic_search_searchbar_search_13x13_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_search_13x13_.imageset/ic_search_searchbar_search_13x13_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_search_13x13_.imageset/ic_search_searchbar_search_13x13_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_searchbar_search_13x13_.imageset/ic_search_searchbar_search_13x13_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_time_14x14_.imageset/ic_search_time_14x14_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_time_14x14_.imageset/ic_search_time_14x14_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_time_14x14_.imageset/ic_search_time_14x14_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_search_time_14x14_.imageset/ic_search_time_14x14_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_searchbar_15x16_.imageset/ic_searchbar_15x16_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/search/ic_searchbar_15x16_.imageset/ic_searchbar_15x16_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/Tabbar-Bg_2x45_.imageset/Tabbar-Bg_2x45_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/Tabbar-Bg_2x45_.imageset/Tabbar-Bg_2x45_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_-1.imageset/ic_tabbar_discover_normal_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_-1.imageset/ic_tabbar_discover_normal_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_-1.imageset/ic_tabbar_discover_normal_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_-1.imageset/ic_tabbar_discover_normal_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_.imageset/ic_tabbar_discover_normal_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_.imageset/ic_tabbar_discover_normal_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_.imageset/ic_tabbar_discover_normal_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_normal_30x30_.imageset/ic_tabbar_discover_normal_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_pressed_30x30_.imageset/ic_tabbar_discover_pressed_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_pressed_30x30_.imageset/ic_tabbar_discover_pressed_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_pressed_30x30_.imageset/ic_tabbar_discover_pressed_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_discover_pressed_30x30_.imageset/ic_tabbar_discover_pressed_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_normal_30x30_.imageset/ic_tabbar_home_normal_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_normal_30x30_.imageset/ic_tabbar_home_normal_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_normal_30x30_.imageset/ic_tabbar_home_normal_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_normal_30x30_.imageset/ic_tabbar_home_normal_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_pressed_30x30_.imageset/ic_tabbar_home_pressed_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_pressed_30x30_.imageset/ic_tabbar_home_pressed_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_pressed_30x30_.imageset/ic_tabbar_home_pressed_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_home_pressed_30x30_.imageset/ic_tabbar_home_pressed_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_normal_30x30_.imageset/ic_tabbar_me_normal_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_normal_30x30_.imageset/ic_tabbar_me_normal_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_normal_30x30_.imageset/ic_tabbar_me_normal_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_normal_30x30_.imageset/ic_tabbar_me_normal_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_pressed_30x30_.imageset/ic_tabbar_me_pressed_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_pressed_30x30_.imageset/ic_tabbar_me_pressed_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_pressed_30x30_.imageset/ic_tabbar_me_pressed_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_me_pressed_30x30_.imageset/ic_tabbar_me_pressed_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_normal_30x30_.imageset/ic_tabbar_media_normal_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_normal_30x30_.imageset/ic_tabbar_media_normal_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_normal_30x30_.imageset/ic_tabbar_media_normal_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_normal_30x30_.imageset/ic_tabbar_media_normal_30x30_@3x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_pressed_30x30_.imageset/ic_tabbar_media_pressed_30x30_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_pressed_30x30_.imageset/ic_tabbar_media_pressed_30x30_@2x.png -------------------------------------------------------------------------------- /kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_pressed_30x30_.imageset/ic_tabbar_media_pressed_30x30_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/kuaikanCartoon/Resource/Image/Assets.xcassets/tabbar/ic_tabbar_media_pressed_30x30_.imageset/ic_tabbar_media_pressed_30x30_@3x.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #import 5 | #import "AppDelegate.h" 6 | 7 | int main(int argc, char * argv[]) { 8 | @autoreleasepool { 9 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /项目截图/个人中心.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/个人中心.png -------------------------------------------------------------------------------- /项目截图/主页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/主页.png -------------------------------------------------------------------------------- /项目截图/作品详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/作品详情.png -------------------------------------------------------------------------------- /项目截图/作者信息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/作者信息.png -------------------------------------------------------------------------------- /项目截图/作者动态.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/作者动态.png -------------------------------------------------------------------------------- /项目截图/发现.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/发现.png -------------------------------------------------------------------------------- /项目截图/搜索.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/搜索.png -------------------------------------------------------------------------------- /项目截图/漫画详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/漫画详情.png -------------------------------------------------------------------------------- /项目截图/评论详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeenTeam1990/KTKuaikan/5bf7aa6012d4be2f9e796dcc690607b97bd2b42e/项目截图/评论详情.png --------------------------------------------------------------------------------