├── ComicReader-Prefix Header.h ├── ComicReader.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Jiang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── unico_0.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Jiang.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── ComicReader.xcscheme │ │ └── xcschememanagement.plist │ ├── mac.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── ComicReader.xcscheme │ │ └── xcschememanagement.plist │ └── unico_0.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ComicReader.xcscheme │ └── xcschememanagement.plist ├── ComicReader.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── Jiang.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── ComicReader ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── CRConfig.h ├── Class │ ├── ComicSearch │ │ ├── ComicSearchViewController.h │ │ ├── ComicSearchViewController.m │ │ └── SearchNamePlist.plist │ ├── ComicStore │ │ ├── BookContentList │ │ │ ├── ComicBookListCollectionViewCell.h │ │ │ ├── ComicBookListCollectionViewCell.m │ │ │ ├── ComicBookListCollectionViewCell.xib │ │ │ ├── ComicStoreBookContentListModel.h │ │ │ └── ComicStoreBookContentListModel.m │ │ ├── BookReader │ │ │ ├── JFComicBookReaderController.h │ │ │ ├── JFComicBookReaderController.m │ │ │ ├── JFComicBookReaderController.xib │ │ │ ├── JFComicReaderBookContentModel.h │ │ │ ├── JFComicReaderBookContentModel.m │ │ │ ├── JFComicReaderBookModel.h │ │ │ └── JFComicReaderBookModel.m │ │ ├── ElementView │ │ │ ├── ResizeLabel.h │ │ │ └── ResizeLabel.m │ │ ├── ShowBook │ │ │ ├── ComicShowBookModel.h │ │ │ ├── ComicShowBookModel.m │ │ │ ├── JFComicBackButton.h │ │ │ ├── JFComicBackButton.m │ │ │ ├── JFComicHeaderReusableView.h │ │ │ ├── JFComicHeaderReusableView.m │ │ │ ├── JFComicHeaderReusableView.xib │ │ │ ├── JFComicSectionsListViewController.h │ │ │ ├── JFComicSectionsListViewController.m │ │ │ ├── JFComicSectionsListViewController.xib │ │ │ ├── JFComicSelectedReusableView.h │ │ │ ├── JFComicSelectedReusableView.m │ │ │ ├── JFComicSelectedReusableView.xib │ │ │ ├── JFComicShowBookLayout.h │ │ │ ├── JFComicShowBookLayout.m │ │ │ ├── JFShowContentCollectionViewCell.h │ │ │ ├── JFShowContentCollectionViewCell.m │ │ │ └── JFShowContentCollectionViewCell.xib │ │ ├── StoreCell │ │ │ ├── ContentCell │ │ │ │ ├── JFComicBlockingContentCellCollectionViewCell.h │ │ │ │ ├── JFComicBlockingContentCellCollectionViewCell.m │ │ │ │ ├── JFComicBlockingContentCellCollectionViewCell.xib │ │ │ │ ├── JFComicShowContentContentCell.h │ │ │ │ ├── JFComicShowContentContentCell.m │ │ │ │ ├── JFComicShowContentContentCell.xib │ │ │ │ ├── JFComicShowImageContentCell.h │ │ │ │ ├── JFComicShowImageContentCell.m │ │ │ │ └── JFComicShowImageContentCell.xib │ │ │ ├── JFComicBlockingCollectionView.h │ │ │ ├── JFComicBlockingCollectionView.m │ │ │ ├── JFComicShowContentCollectionView.h │ │ │ ├── JFComicShowContentCollectionView.m │ │ │ ├── JFComicShowImageCollectionView.h │ │ │ ├── JFComicShowImageCollectionView.m │ │ │ ├── JFComicStoreListBaseCell.h │ │ │ └── JFComicStoreListBaseCell.m │ │ ├── StoreController │ │ │ ├── ComicStoreViewController.h │ │ │ ├── ComicStoreViewController.m │ │ │ ├── JFComicMoreViewController.h │ │ │ ├── JFComicMoreViewController.m │ │ │ └── JFComicMoreViewController.xib │ │ ├── StoreModel │ │ │ ├── HeaderModel │ │ │ │ ├── HeaderModel.h │ │ │ │ └── HeaderModel.m │ │ │ ├── ListContentModel │ │ │ │ ├── ListContentModel.h │ │ │ │ └── ListContentModel.m │ │ │ └── NewStoreModel │ │ │ │ ├── NewStoreTitleModel.h │ │ │ │ └── NewStoreTitleModel.m │ │ ├── StoreTool │ │ │ ├── ComicStoreTool.h │ │ │ ├── ComicStoreTool.m │ │ │ ├── JFComicStoreModelTool.h │ │ │ └── JFComicStoreModelTool.m │ │ └── StoreView │ │ │ ├── ComicStoreContentListCollectionView.h │ │ │ ├── ComicStoreContentListCollectionView.m │ │ │ ├── ComicStoreHeaderView.h │ │ │ ├── ComicStoreHeaderView.m │ │ │ ├── ContentListView.h │ │ │ ├── ContentListView.m │ │ │ ├── JFComicListTitleView.h │ │ │ ├── JFComicListTitleView.m │ │ │ ├── SShowPageShapeView.h │ │ │ └── SShowPageShapeView.m │ ├── Common │ │ ├── Base │ │ │ ├── NavigationStyle.h │ │ │ └── NavigationStyle.m │ │ ├── Category │ │ │ ├── NSMutableAttributedString+TitleTreatment.h │ │ │ ├── NSMutableAttributedString+TitleTreatment.m │ │ │ ├── NSObject+KVCKeyword.h │ │ │ ├── NSObject+KVCKeyword.m │ │ │ ├── UIImage+CutIntoPieces.h │ │ │ ├── UIImage+CutIntoPieces.m │ │ │ ├── UIView+Genie.h │ │ │ └── UIView+Genie.m │ │ ├── Image │ │ │ └── loading_content1.gif │ │ ├── Layout │ │ │ ├── TWSpringyFlowLayout.h │ │ │ └── TWSpringyFlowLayout.m │ │ ├── Model │ │ │ ├── ComicBookInfoContextModel.h │ │ │ └── ComicBookInfoContextModel.m │ │ ├── Tool │ │ │ ├── DocumentTool.h │ │ │ ├── DocumentTool.m │ │ │ ├── GetRequestUrlTool.h │ │ │ ├── GetRequestUrlTool.m │ │ │ ├── JFJumpToControllerManager.h │ │ │ ├── JFJumpToControllerManager.m │ │ │ ├── NewRequestTool.h │ │ │ ├── NewRequestTool.m │ │ │ ├── Reachability.h │ │ │ ├── Reachability.m │ │ │ ├── RequestTool.h │ │ │ └── RequestTool.m │ │ └── View │ │ │ ├── ShowWaitView.h │ │ │ └── ShowWaitView.m │ ├── Lib │ │ ├── JFRefresh │ │ │ ├── JFRefreshControl.h │ │ │ ├── JFRefreshControl.m │ │ │ ├── JFRefreshOpration.h │ │ │ ├── JFRefreshOpration.m │ │ │ ├── UIScrollView+JFRefresh.h │ │ │ ├── UIScrollView+JFRefresh.m │ │ │ ├── UIView+JFFrame.h │ │ │ └── UIView+JFFrame.m │ │ ├── MONActivityIndicatorView │ │ │ ├── MONActivityIndicatorView.h │ │ │ └── MONActivityIndicatorView.m │ │ ├── ProgressHUD │ │ │ ├── Categories │ │ │ │ ├── UIImage+KVNEmpty.h │ │ │ │ ├── UIImage+KVNEmpty.m │ │ │ │ ├── UIImage+KVNImageEffects.h │ │ │ │ └── UIImage+KVNImageEffects.m │ │ │ └── Classes │ │ │ │ ├── KVNProgress.h │ │ │ │ ├── KVNProgress.m │ │ │ │ └── KVNProgressView.xib │ │ └── UzysAnimtedLoad │ │ │ ├── UIScrollView+UzysAnimatedGifLoadMore.h │ │ │ ├── UIScrollView+UzysAnimatedGifLoadMore.m │ │ │ ├── UzysAnimatedGifLoadMoreConfiguration.h │ │ │ ├── UzysAnimtedGifLoadMoreView.h │ │ │ └── UzysAnimtedGifLoadMoreView.m │ ├── MainController │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── MyComicController │ │ ├── ComicCell │ │ │ ├── MyComicTableViewCell.h │ │ │ ├── MyComicTableViewCell.m │ │ │ └── MyComicTableViewCell.xib │ │ ├── ComicController │ │ │ ├── MyComicController.h │ │ │ └── MyComicController.m │ │ ├── ComicModel │ │ │ ├── MyComicContentModel.h │ │ │ ├── MyComicContentModel.m │ │ │ ├── MyComicModel.h │ │ │ ├── MyComicModel.m │ │ │ ├── MyComicTool.h │ │ │ └── MyComicTool.m │ │ └── ComicView │ │ │ ├── ContentImageView.h │ │ │ ├── ContentImageView.m │ │ │ └── ContentImageView.xib │ └── SystemClass │ │ ├── AppDelegate.h │ │ └── AppDelegate.m ├── ComicReader.xcdatamodeld │ ├── .xccurrentversion │ └── ComicReader.xcdatamodel │ │ └── contents ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── 1024x1024.jpg │ │ ├── 120x120-1.jpg │ │ ├── 120x120.jpg │ │ ├── 180x180.jpg │ │ ├── 40x40.jpg │ │ ├── 58x58.jpg │ │ ├── 60x60.jpg │ │ ├── 80x80.jpg │ │ ├── 87x87.jpg │ │ └── Contents.json │ ├── Contents.json │ ├── addgift_button_shadow.imageset │ │ ├── Contents.json │ │ └── addgift_button_shadow.png │ ├── back_bnt_hl.imageset │ │ ├── Contents.json │ │ ├── back_bnt_hl.png │ │ └── back_bnt_hl@2x.png │ ├── back_day.imageset │ │ ├── Contents.json │ │ └── back_day@2x.png │ ├── badge_icon.imageset │ │ ├── Contents.json │ │ └── badge_icon@2x.png │ ├── bc_corner_blue.imageset │ │ ├── Contents.json │ │ └── bc_corner_blue@2x.png │ ├── bc_corner_red.imageset │ │ ├── Contents.json │ │ └── bc_corner_red@2x.png │ ├── bc_loading.imageset │ │ ├── Contents.json │ │ └── bc_loading@2x.png │ ├── books_List_end.imageset │ │ ├── Contents.json │ │ └── books_List_end@2x.png │ ├── books_List_hot.imageset │ │ ├── Contents.json │ │ └── books_List_hot@2x.png │ ├── bookshelf_import_control_left.imageset │ │ ├── Contents.json │ │ └── bookshelf_import_control_left@2x.png │ ├── close.imageset │ │ ├── Contents.json │ │ └── close.png │ ├── comic_loading_text.imageset │ │ ├── Contents.json │ │ └── comic_loading_text@2x.png │ ├── common_navi_back.imageset │ │ ├── Contents.json │ │ └── common_navi_back@2x.png │ ├── data_loading_error.imageset │ │ ├── Contents.json │ │ └── data_loading_error@2x.png │ ├── ico_daoxun.imageset │ │ ├── Contents.json │ │ └── ico_daoxun.png │ ├── ico_shunxun.imageset │ │ ├── Contents.json │ │ └── ico_shunxun.png │ ├── like.imageset │ │ ├── Contents.json │ │ └── like.png │ ├── menu_bk_partten.imageset │ │ ├── Contents.json │ │ ├── menu_bk_partten.png │ │ └── menu_bk_partten@2x.png │ ├── selectedViewBackImage.imageset │ │ ├── Contents.json │ │ └── selectedViewBackImage.png │ ├── tab1_nor.imageset │ │ ├── Contents.json │ │ ├── tab1_nor@2x.png │ │ └── tab1_nor@3x.png │ ├── tab1_sel.imageset │ │ ├── Contents.json │ │ ├── tab1_sel@2x.png │ │ └── tab1_sel@3x.png │ ├── tab2_nor.imageset │ │ ├── Contents.json │ │ ├── tab2_nor@2x.png │ │ └── tab2_nor@3x.png │ ├── tab2_sel.imageset │ │ ├── Contents.json │ │ ├── tab2_sel@2x.png │ │ └── tab2_sel@3x.png │ ├── tab3_nor.imageset │ │ ├── Contents.json │ │ ├── tab3_nor@2x.png │ │ └── tab3_nor@3x.png │ ├── tab3_sel.imageset │ │ ├── Contents.json │ │ ├── tab3_sel@2x.png │ │ └── tab3_sel@3x.png │ ├── tab4_nor.imageset │ │ ├── Contents.json │ │ ├── tab4_nor@2x.png │ │ └── tab4_nor@3x.png │ └── tab4_sel.imageset │ │ ├── Contents.json │ │ ├── tab4_sel@2x.png │ │ └── tab4_sel@3x.png ├── Info.plist ├── main.m └── resource │ ├── bounce_sammy@2x.gif │ ├── farmtruck@2x.gif │ ├── fruit_animation@2x.gif │ ├── inbox@2x.gif │ ├── nevertoolate@2x.gif │ └── slackLoader@2x.gif ├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── AnimatedGIFImageSerialization │ ├── AnimatedGIFImageSerialization │ │ ├── AnimatedGIFImageSerialization.h │ │ └── AnimatedGIFImageSerialization.m │ ├── LICENSE │ └── README.md ├── DBSphereTagCloud │ ├── DBSphereTagCloud │ │ ├── DBMatrix.h │ │ ├── DBPoint.h │ │ ├── DBSphereView.h │ │ └── DBSphereView.m │ ├── LICENSE │ └── README.md ├── FXBlurView │ ├── FXBlurView │ │ ├── FXBlurView.h │ │ └── FXBlurView.m │ ├── LICENCE.md │ └── README.md ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ ├── AnimatedGIFImageSerialization │ │ │ └── AnimatedGIFImageSerialization.h │ │ ├── DBSphereTagCloud │ │ │ ├── DBMatrix.h │ │ │ ├── DBPoint.h │ │ │ └── DBSphereView.h │ │ ├── FXBlurView │ │ │ └── FXBlurView.h │ │ ├── MPFoldTransition │ │ │ ├── MPAnimation.h │ │ │ ├── MPFlipEnumerations.h │ │ │ ├── MPFlipSegue.h │ │ │ ├── MPFlipTransition.h │ │ │ ├── MPFoldEnumerations.h │ │ │ ├── MPFoldModalSegue.h │ │ │ ├── MPFoldNavPopSegue.h │ │ │ ├── MPFoldNavPushSegue.h │ │ │ ├── MPFoldSegue.h │ │ │ ├── MPFoldTransition.h │ │ │ ├── MPTransition.h │ │ │ └── MPTransitionEnumerations.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 │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ └── SlimeRefresh │ │ │ ├── SRDefine.h │ │ │ ├── SRRefreshView.h │ │ │ └── SRSlimeView.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h │ │ ├── AnimatedGIFImageSerialization │ │ └── AnimatedGIFImageSerialization.h │ │ ├── DBSphereTagCloud │ │ ├── DBMatrix.h │ │ ├── DBPoint.h │ │ └── DBSphereView.h │ │ ├── FXBlurView │ │ └── FXBlurView.h │ │ ├── MPFoldTransition │ │ ├── MPAnimation.h │ │ ├── MPFlipEnumerations.h │ │ ├── MPFlipSegue.h │ │ ├── MPFlipTransition.h │ │ ├── MPFoldEnumerations.h │ │ ├── MPFoldModalSegue.h │ │ ├── MPFoldNavPopSegue.h │ │ ├── MPFoldNavPushSegue.h │ │ ├── MPFoldSegue.h │ │ ├── MPFoldTransition.h │ │ ├── MPTransition.h │ │ └── MPTransitionEnumerations.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 │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ └── SlimeRefresh │ │ ├── SRDefine.h │ │ ├── SRRefreshView.h │ │ └── SRSlimeView.h ├── MPFoldTransition │ ├── MPFoldTransition │ │ └── MPFoldTransition │ │ │ ├── MPAnimation.h │ │ │ ├── MPAnimation.m │ │ │ ├── MPFlipEnumerations.h │ │ │ ├── MPFlipTransition.h │ │ │ ├── MPFlipTransition.m │ │ │ ├── MPFoldEnumerations.h │ │ │ ├── MPFoldTransition.h │ │ │ ├── MPFoldTransition.m │ │ │ ├── MPTransition.h │ │ │ ├── MPTransition.m │ │ │ ├── MPTransitionEnumerations.h │ │ │ └── Segues │ │ │ ├── MPFlipSegue.h │ │ │ ├── MPFlipSegue.m │ │ │ ├── MPFoldModalSegue.h │ │ │ ├── MPFoldModalSegue.m │ │ │ ├── MPFoldNavPopSegue.h │ │ │ ├── MPFoldNavPopSegue.m │ │ │ ├── MPFoldNavPushSegue.h │ │ │ ├── MPFoldNavPushSegue.m │ │ │ ├── MPFoldSegue.h │ │ │ └── MPFoldSegue.m │ ├── README.markdown │ └── Source Code License.rtf ├── 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 │ │ └── Jiang.xcuserdatad │ │ └── xcschemes │ │ ├── AFNetworking.xcscheme │ │ ├── AnimatedGIFImageSerialization.xcscheme │ │ ├── DBSphereTagCloud.xcscheme │ │ ├── FXBlurView.xcscheme │ │ ├── MPFoldTransition.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── SlimeRefresh.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.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 │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── SlimeRefresh │ ├── License.txt │ ├── README.md │ └── SlimeRefresh │ │ └── SlimeRefresh │ │ ├── SRDefine.h │ │ ├── SRRefreshView.h │ │ ├── SRRefreshView.m │ │ ├── SRSlimeView.h │ │ ├── SRSlimeView.m │ │ ├── sr_refresh.png │ │ └── sr_refresh@2X.png └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ ├── AnimatedGIFImageSerialization │ ├── AnimatedGIFImageSerialization-dummy.m │ ├── AnimatedGIFImageSerialization-prefix.pch │ └── AnimatedGIFImageSerialization.xcconfig │ ├── DBSphereTagCloud │ ├── DBSphereTagCloud-dummy.m │ ├── DBSphereTagCloud-prefix.pch │ └── DBSphereTagCloud.xcconfig │ ├── FXBlurView │ ├── FXBlurView-dummy.m │ ├── FXBlurView-prefix.pch │ └── FXBlurView.xcconfig │ ├── MPFoldTransition │ ├── MPFoldTransition-dummy.m │ ├── MPFoldTransition-prefix.pch │ └── MPFoldTransition.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig │ └── SlimeRefresh │ ├── SlimeRefresh-dummy.m │ ├── SlimeRefresh-prefix.pch │ └── SlimeRefresh.xcconfig └── README.md /ComicReader-Prefix Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader-Prefix Header.h -------------------------------------------------------------------------------- /ComicReader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComicReader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComicReader.xcodeproj/project.xcworkspace/xcuserdata/Jiang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/project.xcworkspace/xcuserdata/Jiang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ComicReader.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ComicReader.xcodeproj/project.xcworkspace/xcuserdata/unico_0.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/project.xcworkspace/xcuserdata/unico_0.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/ComicReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/ComicReader.xcscheme -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/ComicReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/ComicReader.xcscheme -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/unico_0.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/unico_0.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/unico_0.xcuserdatad/xcschemes/ComicReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/unico_0.xcuserdatad/xcschemes/ComicReader.xcscheme -------------------------------------------------------------------------------- /ComicReader.xcodeproj/xcuserdata/unico_0.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcodeproj/xcuserdata/unico_0.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ComicReader.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComicReader.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ComicReader.xcworkspace/xcuserdata/Jiang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcworkspace/xcuserdata/Jiang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ComicReader.xcworkspace/xcuserdata/Jiang.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcworkspace/xcuserdata/Jiang.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ComicReader.xcworkspace/xcuserdata/Jiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader.xcworkspace/xcuserdata/Jiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ComicReader/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ComicReader/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ComicReader/CRConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/CRConfig.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicSearch/ComicSearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicSearch/ComicSearchViewController.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicSearch/ComicSearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicSearch/ComicSearchViewController.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicSearch/SearchNamePlist.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicSearch/SearchNamePlist.plist -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookContentList/ComicBookListCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookContentList/ComicBookListCollectionViewCell.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookContentList/ComicBookListCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookContentList/ComicBookListCollectionViewCell.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookContentList/ComicBookListCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookContentList/ComicBookListCollectionViewCell.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookContentList/ComicStoreBookContentListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookContentList/ComicStoreBookContentListModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookContentList/ComicStoreBookContentListModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookContentList/ComicStoreBookContentListModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicBookReaderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicBookReaderController.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicBookReaderController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicBookReaderController.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicBookReaderController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicBookReaderController.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicReaderBookContentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicReaderBookContentModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicReaderBookContentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicReaderBookContentModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicReaderBookModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicReaderBookModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/BookReader/JFComicReaderBookModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/BookReader/JFComicReaderBookModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ElementView/ResizeLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ElementView/ResizeLabel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ElementView/ResizeLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ElementView/ResizeLabel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/ComicShowBookModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/ComicShowBookModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/ComicShowBookModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/ComicShowBookModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicBackButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicBackButton.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicBackButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicBackButton.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicHeaderReusableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicHeaderReusableView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicHeaderReusableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicHeaderReusableView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicHeaderReusableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicHeaderReusableView.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicSectionsListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicSectionsListViewController.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicSectionsListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicSectionsListViewController.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicSectionsListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicSectionsListViewController.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicSelectedReusableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicSelectedReusableView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicSelectedReusableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicSelectedReusableView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicSelectedReusableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicSelectedReusableView.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicShowBookLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicShowBookLayout.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFComicShowBookLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFComicShowBookLayout.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFShowContentCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFShowContentCollectionViewCell.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFShowContentCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFShowContentCollectionViewCell.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/ShowBook/JFShowContentCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/ShowBook/JFShowContentCollectionViewCell.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicBlockingContentCellCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicBlockingContentCellCollectionViewCell.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicBlockingContentCellCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicBlockingContentCellCollectionViewCell.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicBlockingContentCellCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicBlockingContentCellCollectionViewCell.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowContentContentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowContentContentCell.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowContentContentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowContentContentCell.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowContentContentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowContentContentCell.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowImageContentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowImageContentCell.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowImageContentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowImageContentCell.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowImageContentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/ContentCell/JFComicShowImageContentCell.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicBlockingCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicBlockingCollectionView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicBlockingCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicBlockingCollectionView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicShowContentCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicShowContentCollectionView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicShowContentCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicShowContentCollectionView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicShowImageCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicShowImageCollectionView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicShowImageCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicShowImageCollectionView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicStoreListBaseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicStoreListBaseCell.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreCell/JFComicStoreListBaseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreCell/JFComicStoreListBaseCell.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreController/ComicStoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreController/ComicStoreViewController.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreController/ComicStoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreController/ComicStoreViewController.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreController/JFComicMoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreController/JFComicMoreViewController.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreController/JFComicMoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreController/JFComicMoreViewController.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreController/JFComicMoreViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreController/JFComicMoreViewController.xib -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreModel/HeaderModel/HeaderModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreModel/HeaderModel/HeaderModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreModel/HeaderModel/HeaderModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreModel/HeaderModel/HeaderModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreModel/ListContentModel/ListContentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreModel/ListContentModel/ListContentModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreModel/ListContentModel/ListContentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreModel/ListContentModel/ListContentModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreModel/NewStoreModel/NewStoreTitleModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreModel/NewStoreModel/NewStoreTitleModel.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreModel/NewStoreModel/NewStoreTitleModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreModel/NewStoreModel/NewStoreTitleModel.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreTool/ComicStoreTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreTool/ComicStoreTool.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreTool/ComicStoreTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreTool/ComicStoreTool.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreTool/JFComicStoreModelTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreTool/JFComicStoreModelTool.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreTool/JFComicStoreModelTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreTool/JFComicStoreModelTool.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/ComicStoreContentListCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/ComicStoreContentListCollectionView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/ComicStoreContentListCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/ComicStoreContentListCollectionView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/ComicStoreHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/ComicStoreHeaderView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/ComicStoreHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/ComicStoreHeaderView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/ContentListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/ContentListView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/ContentListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/ContentListView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/JFComicListTitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/JFComicListTitleView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/JFComicListTitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/JFComicListTitleView.m -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/SShowPageShapeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/SShowPageShapeView.h -------------------------------------------------------------------------------- /ComicReader/Class/ComicStore/StoreView/SShowPageShapeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/ComicStore/StoreView/SShowPageShapeView.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Base/NavigationStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Base/NavigationStyle.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Base/NavigationStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Base/NavigationStyle.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/NSMutableAttributedString+TitleTreatment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/NSMutableAttributedString+TitleTreatment.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/NSMutableAttributedString+TitleTreatment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/NSMutableAttributedString+TitleTreatment.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/NSObject+KVCKeyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/NSObject+KVCKeyword.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/NSObject+KVCKeyword.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/NSObject+KVCKeyword.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/UIImage+CutIntoPieces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/UIImage+CutIntoPieces.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/UIImage+CutIntoPieces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/UIImage+CutIntoPieces.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/UIView+Genie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/UIView+Genie.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Category/UIView+Genie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Category/UIView+Genie.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Image/loading_content1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Image/loading_content1.gif -------------------------------------------------------------------------------- /ComicReader/Class/Common/Layout/TWSpringyFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Layout/TWSpringyFlowLayout.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Layout/TWSpringyFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Layout/TWSpringyFlowLayout.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Model/ComicBookInfoContextModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Model/ComicBookInfoContextModel.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Model/ComicBookInfoContextModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Model/ComicBookInfoContextModel.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/DocumentTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/DocumentTool.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/DocumentTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/DocumentTool.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/GetRequestUrlTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/GetRequestUrlTool.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/GetRequestUrlTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/GetRequestUrlTool.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/JFJumpToControllerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/JFJumpToControllerManager.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/JFJumpToControllerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/JFJumpToControllerManager.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/NewRequestTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/NewRequestTool.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/NewRequestTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/NewRequestTool.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/Reachability.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/Reachability.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/RequestTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/RequestTool.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/Tool/RequestTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/Tool/RequestTool.m -------------------------------------------------------------------------------- /ComicReader/Class/Common/View/ShowWaitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/View/ShowWaitView.h -------------------------------------------------------------------------------- /ComicReader/Class/Common/View/ShowWaitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Common/View/ShowWaitView.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/JFRefreshControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/JFRefreshControl.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/JFRefreshControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/JFRefreshControl.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/JFRefreshOpration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/JFRefreshOpration.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/JFRefreshOpration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/JFRefreshOpration.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/UIScrollView+JFRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/UIScrollView+JFRefresh.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/UIScrollView+JFRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/UIScrollView+JFRefresh.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/UIView+JFFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/UIView+JFFrame.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/JFRefresh/UIView+JFFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/JFRefresh/UIView+JFFrame.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/MONActivityIndicatorView/MONActivityIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/MONActivityIndicatorView/MONActivityIndicatorView.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/MONActivityIndicatorView/MONActivityIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/MONActivityIndicatorView/MONActivityIndicatorView.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNEmpty.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNEmpty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNEmpty.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNImageEffects.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Categories/UIImage+KVNImageEffects.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Classes/KVNProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Classes/KVNProgress.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Classes/KVNProgress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Classes/KVNProgress.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/ProgressHUD/Classes/KVNProgressView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/ProgressHUD/Classes/KVNProgressView.xib -------------------------------------------------------------------------------- /ComicReader/Class/Lib/UzysAnimtedLoad/UIScrollView+UzysAnimatedGifLoadMore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/UzysAnimtedLoad/UIScrollView+UzysAnimatedGifLoadMore.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/UzysAnimtedLoad/UIScrollView+UzysAnimatedGifLoadMore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/UzysAnimtedLoad/UIScrollView+UzysAnimatedGifLoadMore.m -------------------------------------------------------------------------------- /ComicReader/Class/Lib/UzysAnimtedLoad/UzysAnimatedGifLoadMoreConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/UzysAnimtedLoad/UzysAnimatedGifLoadMoreConfiguration.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/UzysAnimtedLoad/UzysAnimtedGifLoadMoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/UzysAnimtedLoad/UzysAnimtedGifLoadMoreView.h -------------------------------------------------------------------------------- /ComicReader/Class/Lib/UzysAnimtedLoad/UzysAnimtedGifLoadMoreView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/Lib/UzysAnimtedLoad/UzysAnimtedGifLoadMoreView.m -------------------------------------------------------------------------------- /ComicReader/Class/MainController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MainController/ViewController.h -------------------------------------------------------------------------------- /ComicReader/Class/MainController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MainController/ViewController.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicCell/MyComicTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicCell/MyComicTableViewCell.h -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicCell/MyComicTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicCell/MyComicTableViewCell.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicCell/MyComicTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicCell/MyComicTableViewCell.xib -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicController/MyComicController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicController/MyComicController.h -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicController/MyComicController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicController/MyComicController.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicModel/MyComicContentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicModel/MyComicContentModel.h -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicModel/MyComicContentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicModel/MyComicContentModel.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicModel/MyComicModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicModel/MyComicModel.h -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicModel/MyComicModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicModel/MyComicModel.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicModel/MyComicTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicModel/MyComicTool.h -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicModel/MyComicTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicModel/MyComicTool.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicView/ContentImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicView/ContentImageView.h -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicView/ContentImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicView/ContentImageView.m -------------------------------------------------------------------------------- /ComicReader/Class/MyComicController/ComicView/ContentImageView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/MyComicController/ComicView/ContentImageView.xib -------------------------------------------------------------------------------- /ComicReader/Class/SystemClass/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/SystemClass/AppDelegate.h -------------------------------------------------------------------------------- /ComicReader/Class/SystemClass/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Class/SystemClass/AppDelegate.m -------------------------------------------------------------------------------- /ComicReader/ComicReader.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/ComicReader.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ComicReader/ComicReader.xcdatamodeld/ComicReader.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/ComicReader.xcdatamodeld/ComicReader.xcdatamodel/contents -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/1024x1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/1024x1024.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/120x120-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/120x120-1.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/120x120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/120x120.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/180x180.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/40x40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/40x40.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/58x58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/58x58.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/60x60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/60x60.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/80x80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/80x80.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/87x87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/87x87.jpg -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/addgift_button_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/addgift_button_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/addgift_button_shadow.imageset/addgift_button_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/addgift_button_shadow.imageset/addgift_button_shadow.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/back_bnt_hl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/back_bnt_hl.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/back_bnt_hl.imageset/back_bnt_hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/back_bnt_hl.imageset/back_bnt_hl.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/back_bnt_hl.imageset/back_bnt_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/back_bnt_hl.imageset/back_bnt_hl@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/back_day.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/back_day.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/back_day.imageset/back_day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/back_day.imageset/back_day@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/badge_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/badge_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/badge_icon.imageset/badge_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/badge_icon.imageset/badge_icon@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bc_corner_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bc_corner_blue.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bc_corner_blue.imageset/bc_corner_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bc_corner_blue.imageset/bc_corner_blue@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bc_corner_red.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bc_corner_red.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bc_corner_red.imageset/bc_corner_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bc_corner_red.imageset/bc_corner_red@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bc_loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bc_loading.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bc_loading.imageset/bc_loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bc_loading.imageset/bc_loading@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/books_List_end.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/books_List_end.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/books_List_end.imageset/books_List_end@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/books_List_end.imageset/books_List_end@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/books_List_hot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/books_List_hot.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/books_List_hot.imageset/books_List_hot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/books_List_hot.imageset/books_List_hot@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bookshelf_import_control_left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bookshelf_import_control_left.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/bookshelf_import_control_left.imageset/bookshelf_import_control_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/bookshelf_import_control_left.imageset/bookshelf_import_control_left@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/close.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/close.imageset/close.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/comic_loading_text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/comic_loading_text.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/comic_loading_text.imageset/comic_loading_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/comic_loading_text.imageset/comic_loading_text@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/common_navi_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/common_navi_back.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/common_navi_back.imageset/common_navi_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/common_navi_back.imageset/common_navi_back@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/data_loading_error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/data_loading_error.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/data_loading_error.imageset/data_loading_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/data_loading_error.imageset/data_loading_error@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/ico_daoxun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/ico_daoxun.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/ico_daoxun.imageset/ico_daoxun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/ico_daoxun.imageset/ico_daoxun.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/ico_shunxun.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/ico_shunxun.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/ico_shunxun.imageset/ico_shunxun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/ico_shunxun.imageset/ico_shunxun.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/like.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/like.imageset/like.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/menu_bk_partten.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/menu_bk_partten.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/menu_bk_partten.imageset/menu_bk_partten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/menu_bk_partten.imageset/menu_bk_partten.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/menu_bk_partten.imageset/menu_bk_partten@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/menu_bk_partten.imageset/menu_bk_partten@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/selectedViewBackImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/selectedViewBackImage.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/selectedViewBackImage.imageset/selectedViewBackImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/selectedViewBackImage.imageset/selectedViewBackImage.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab1_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab1_nor.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab1_nor.imageset/tab1_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab1_nor.imageset/tab1_nor@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab1_nor.imageset/tab1_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab1_nor.imageset/tab1_nor@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab1_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab1_sel.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab1_sel.imageset/tab1_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab1_sel.imageset/tab1_sel@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab1_sel.imageset/tab1_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab1_sel.imageset/tab1_sel@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab2_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab2_nor.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab2_nor.imageset/tab2_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab2_nor.imageset/tab2_nor@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab2_nor.imageset/tab2_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab2_nor.imageset/tab2_nor@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab2_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab2_sel.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab2_sel.imageset/tab2_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab2_sel.imageset/tab2_sel@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab2_sel.imageset/tab2_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab2_sel.imageset/tab2_sel@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab3_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab3_nor.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab3_nor.imageset/tab3_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab3_nor.imageset/tab3_nor@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab3_nor.imageset/tab3_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab3_nor.imageset/tab3_nor@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab3_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab3_sel.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab3_sel.imageset/tab3_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab3_sel.imageset/tab3_sel@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab3_sel.imageset/tab3_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab3_sel.imageset/tab3_sel@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab4_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab4_nor.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab4_nor.imageset/tab4_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab4_nor.imageset/tab4_nor@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab4_nor.imageset/tab4_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab4_nor.imageset/tab4_nor@3x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab4_sel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab4_sel.imageset/Contents.json -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab4_sel.imageset/tab4_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab4_sel.imageset/tab4_sel@2x.png -------------------------------------------------------------------------------- /ComicReader/Images.xcassets/tab4_sel.imageset/tab4_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Images.xcassets/tab4_sel.imageset/tab4_sel@3x.png -------------------------------------------------------------------------------- /ComicReader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/Info.plist -------------------------------------------------------------------------------- /ComicReader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/main.m -------------------------------------------------------------------------------- /ComicReader/resource/bounce_sammy@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/resource/bounce_sammy@2x.gif -------------------------------------------------------------------------------- /ComicReader/resource/farmtruck@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/resource/farmtruck@2x.gif -------------------------------------------------------------------------------- /ComicReader/resource/fruit_animation@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/resource/fruit_animation@2x.gif -------------------------------------------------------------------------------- /ComicReader/resource/inbox@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/resource/inbox@2x.gif -------------------------------------------------------------------------------- /ComicReader/resource/nevertoolate@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/resource/nevertoolate@2x.gif -------------------------------------------------------------------------------- /ComicReader/resource/slackLoader@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/ComicReader/resource/slackLoader@2x.gif -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /Pods/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.h -------------------------------------------------------------------------------- /Pods/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.m -------------------------------------------------------------------------------- /Pods/AnimatedGIFImageSerialization/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AnimatedGIFImageSerialization/LICENSE -------------------------------------------------------------------------------- /Pods/AnimatedGIFImageSerialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/AnimatedGIFImageSerialization/README.md -------------------------------------------------------------------------------- /Pods/DBSphereTagCloud/DBSphereTagCloud/DBMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/DBSphereTagCloud/DBSphereTagCloud/DBMatrix.h -------------------------------------------------------------------------------- /Pods/DBSphereTagCloud/DBSphereTagCloud/DBPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/DBSphereTagCloud/DBSphereTagCloud/DBPoint.h -------------------------------------------------------------------------------- /Pods/DBSphereTagCloud/DBSphereTagCloud/DBSphereView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/DBSphereTagCloud/DBSphereTagCloud/DBSphereView.h -------------------------------------------------------------------------------- /Pods/DBSphereTagCloud/DBSphereTagCloud/DBSphereView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/DBSphereTagCloud/DBSphereTagCloud/DBSphereView.m -------------------------------------------------------------------------------- /Pods/DBSphereTagCloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/DBSphereTagCloud/LICENSE -------------------------------------------------------------------------------- /Pods/DBSphereTagCloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/DBSphereTagCloud/README.md -------------------------------------------------------------------------------- /Pods/FXBlurView/FXBlurView/FXBlurView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/FXBlurView/FXBlurView/FXBlurView.h -------------------------------------------------------------------------------- /Pods/FXBlurView/FXBlurView/FXBlurView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/FXBlurView/FXBlurView/FXBlurView.m -------------------------------------------------------------------------------- /Pods/FXBlurView/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/FXBlurView/LICENCE.md -------------------------------------------------------------------------------- /Pods/FXBlurView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/FXBlurView/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AnimatedGIFImageSerialization/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DBSphereTagCloud/DBMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../DBSphereTagCloud/DBSphereTagCloud/DBMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DBSphereTagCloud/DBPoint.h: -------------------------------------------------------------------------------- 1 | ../../../DBSphereTagCloud/DBSphereTagCloud/DBPoint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/DBSphereTagCloud/DBSphereView.h: -------------------------------------------------------------------------------- 1 | ../../../DBSphereTagCloud/DBSphereTagCloud/DBSphereView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FXBlurView/FXBlurView.h: -------------------------------------------------------------------------------- 1 | ../../../FXBlurView/FXBlurView/FXBlurView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFlipEnumerations.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipEnumerations.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFlipSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFlipSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFlipTransition.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFoldEnumerations.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldEnumerations.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFoldModalSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldModalSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFoldNavPopSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPopSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFoldNavPushSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPushSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFoldSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPFoldTransition.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPTransition.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/MPFoldTransition/MPTransitionEnumerations.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransitionEnumerations.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/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/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/SlimeRefresh/SRDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SlimeRefresh/SlimeRefresh/SlimeRefresh/SRDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SlimeRefresh/SRRefreshView.h: -------------------------------------------------------------------------------- 1 | ../../../SlimeRefresh/SlimeRefresh/SlimeRefresh/SRRefreshView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SlimeRefresh/SRSlimeView.h: -------------------------------------------------------------------------------- 1 | ../../../SlimeRefresh/SlimeRefresh/SlimeRefresh/SRSlimeView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AnimatedGIFImageSerialization/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DBSphereTagCloud/DBMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../DBSphereTagCloud/DBSphereTagCloud/DBMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DBSphereTagCloud/DBPoint.h: -------------------------------------------------------------------------------- 1 | ../../../DBSphereTagCloud/DBSphereTagCloud/DBPoint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/DBSphereTagCloud/DBSphereView.h: -------------------------------------------------------------------------------- 1 | ../../../DBSphereTagCloud/DBSphereTagCloud/DBSphereView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FXBlurView/FXBlurView.h: -------------------------------------------------------------------------------- 1 | ../../../FXBlurView/FXBlurView/FXBlurView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFlipEnumerations.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipEnumerations.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFlipSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFlipSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFlipTransition.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFoldEnumerations.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldEnumerations.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFoldModalSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldModalSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFoldNavPopSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPopSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFoldNavPushSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPushSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFoldSegue.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldSegue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPFoldTransition.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPTransition.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MPFoldTransition/MPTransitionEnumerations.h: -------------------------------------------------------------------------------- 1 | ../../../MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransitionEnumerations.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/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/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/SlimeRefresh/SRDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SlimeRefresh/SlimeRefresh/SlimeRefresh/SRDefine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SlimeRefresh/SRRefreshView.h: -------------------------------------------------------------------------------- 1 | ../../../SlimeRefresh/SlimeRefresh/SlimeRefresh/SRRefreshView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SlimeRefresh/SRSlimeView.h: -------------------------------------------------------------------------------- 1 | ../../../SlimeRefresh/SlimeRefresh/SlimeRefresh/SRSlimeView.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPAnimation.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPAnimation.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipEnumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipEnumerations.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipTransition.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFlipTransition.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldEnumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldEnumerations.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldTransition.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPFoldTransition.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransition.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransition.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransitionEnumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/MPTransitionEnumerations.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFlipSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFlipSegue.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFlipSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFlipSegue.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldModalSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldModalSegue.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldModalSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldModalSegue.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPopSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPopSegue.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPopSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPopSegue.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPushSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPushSegue.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPushSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldNavPushSegue.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldSegue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldSegue.h -------------------------------------------------------------------------------- /Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldSegue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/MPFoldTransition/MPFoldTransition/Segues/MPFoldSegue.m -------------------------------------------------------------------------------- /Pods/MPFoldTransition/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/README.markdown -------------------------------------------------------------------------------- /Pods/MPFoldTransition/Source Code License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/MPFoldTransition/Source Code License.rtf -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/AFNetworking.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/AFNetworking.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/AnimatedGIFImageSerialization.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/AnimatedGIFImageSerialization.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/DBSphereTagCloud.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/DBSphereTagCloud.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/FXBlurView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/FXBlurView.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/MPFoldTransition.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/MPFoldTransition.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/SDWebImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/SDWebImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/SlimeRefresh.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/SlimeRefresh.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Pods.xcodeproj/xcuserdata/Jiang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/SlimeRefresh/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/License.txt -------------------------------------------------------------------------------- /Pods/SlimeRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/README.md -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRDefine.h -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRRefreshView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRRefreshView.h -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRRefreshView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRRefreshView.m -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRSlimeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRSlimeView.h -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRSlimeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/SRSlimeView.m -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/sr_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/sr_refresh.png -------------------------------------------------------------------------------- /Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/sr_refresh@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/SlimeRefresh/SlimeRefresh/SlimeRefresh/sr_refresh@2X.png -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/AFNetworking/AFNetworking.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/AnimatedGIFImageSerialization/AnimatedGIFImageSerialization.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/DBSphereTagCloud/DBSphereTagCloud-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/DBSphereTagCloud/DBSphereTagCloud-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/DBSphereTagCloud/DBSphereTagCloud-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/DBSphereTagCloud/DBSphereTagCloud-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/DBSphereTagCloud/DBSphereTagCloud.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/DBSphereTagCloud/DBSphereTagCloud.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FXBlurView/FXBlurView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/FXBlurView/FXBlurView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FXBlurView/FXBlurView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/FXBlurView/FXBlurView-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FXBlurView/FXBlurView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/FXBlurView/FXBlurView.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MPFoldTransition/MPFoldTransition-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/MPFoldTransition/MPFoldTransition-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MPFoldTransition/MPFoldTransition-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/MPFoldTransition/MPFoldTransition-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MPFoldTransition/MPFoldTransition.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/MPFoldTransition/MPFoldTransition.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SlimeRefresh/SlimeRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/SlimeRefresh/SlimeRefresh-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SlimeRefresh/SlimeRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/SlimeRefresh/SlimeRefresh-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SlimeRefresh/SlimeRefresh.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/Pods/Target Support Files/SlimeRefresh/SlimeRefresh.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jiang-Fallen/iComicReader/HEAD/README.md --------------------------------------------------------------------------------