├── .gitignore ├── LICENSE ├── README.md └── ifanr ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── Manifest.lock ├── MonkeyKing │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnyActivity.swift │ │ ├── MonkeyKing.swift │ │ └── Networking.swift ├── Moya │ ├── License.md │ └── Readme.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Result │ ├── LICENSE │ ├── README.md │ └── Result │ │ ├── Result.swift │ │ └── ResultProtocol.swift ├── RxSwift │ ├── LICENSE.md │ ├── README.md │ └── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ ├── AsyncLock.swift │ │ ├── Lock.swift │ │ ├── LockOwnerType.swift │ │ ├── SynchronizedDisposeType.swift │ │ ├── SynchronizedOnType.swift │ │ ├── SynchronizedSubscribeType.swift │ │ └── SynchronizedUnsubscribeType.swift │ │ ├── ConnectableObservableType.swift │ │ ├── Disposable.swift │ │ ├── Disposables │ │ ├── AnonymousDisposable.swift │ │ ├── BinaryDisposable.swift │ │ ├── BooleanDisposable.swift │ │ ├── CompositeDisposable.swift │ │ ├── Disposables.swift │ │ ├── DisposeBag.swift │ │ ├── DisposeBase.swift │ │ ├── NopDisposable.swift │ │ ├── RefCountDisposable.swift │ │ ├── ScheduledDisposable.swift │ │ ├── SerialDisposable.swift │ │ ├── SingleAssignmentDisposable.swift │ │ └── SubscriptionDisposable.swift │ │ ├── Errors.swift │ │ ├── Event.swift │ │ ├── Extensions │ │ └── String+Rx.swift │ │ ├── ImmediateSchedulerType.swift │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType+Extensions.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ ├── Implementations │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AnonymousObservable.swift │ │ │ ├── Buffer.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── Concat.swift │ │ │ ├── ConnectableObservable.swift │ │ │ ├── Debug.swift │ │ │ ├── Debunce.swift │ │ │ ├── Deferred.swift │ │ │ ├── Delay.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Error.swift │ │ │ ├── Filter.swift │ │ │ ├── Generate.swift │ │ │ ├── Just.swift │ │ │ ├── Map.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── ObserveOnSerialDispatchQueue.swift │ │ │ ├── Producer.swift │ │ │ ├── Range.swift │ │ │ ├── Reduce.swift │ │ │ ├── RefCount.swift │ │ │ ├── Repeat.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── Sequence.swift │ │ │ ├── ShareReplay1.swift │ │ │ ├── ShareReplay1WhileConnected.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── Switch.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ ├── Observable+Aggregate.swift │ │ ├── Observable+Binding.swift │ │ ├── Observable+Concurrency.swift │ │ ├── Observable+Creation.swift │ │ ├── Observable+Debug.swift │ │ ├── Observable+Multiple.swift │ │ ├── Observable+Single.swift │ │ ├── Observable+StandardSequenceOperators.swift │ │ └── Observable+Time.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ ├── AnonymousObserver.swift │ │ ├── ObserverBase.swift │ │ └── TailRecursiveSink.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ ├── ConcurrentMainScheduler.swift │ │ ├── CurrentThreadScheduler.swift │ │ ├── HistoricalScheduler.swift │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ ├── ImmediateScheduler.swift │ │ ├── Internal │ │ │ ├── AnonymousInvocable.swift │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ ├── InvocableScheduledItem.swift │ │ │ ├── InvocableType.swift │ │ │ ├── ScheduledItem.swift │ │ │ └── ScheduledItemType.swift │ │ ├── MainScheduler.swift │ │ ├── OperationQueueScheduler.swift │ │ ├── RecursiveScheduler.swift │ │ ├── SchedulerServices+Emulation.swift │ │ ├── SerialDispatchQueueScheduler.swift │ │ ├── VirtualTimeConverterType.swift │ │ └── VirtualTimeScheduler.swift │ │ └── Subjects │ │ ├── BehaviorSubject.swift │ │ ├── PublishSubject.swift │ │ ├── ReplaySubject.swift │ │ ├── SubjectType.swift │ │ └── Variable.swift ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── UILayoutGuide+Extensions.swift │ │ └── UILayoutSupport+Extensions.swift ├── Target Support Files │ ├── Alamofire │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.modulemap │ │ ├── Alamofire.xcconfig │ │ └── Info.plist │ ├── MonkeyKing │ │ ├── Info.plist │ │ ├── MonkeyKing-dummy.m │ │ ├── MonkeyKing-prefix.pch │ │ ├── MonkeyKing-umbrella.h │ │ ├── MonkeyKing.modulemap │ │ └── MonkeyKing.xcconfig │ ├── Moya │ │ ├── Info.plist │ │ ├── Moya-dummy.m │ │ ├── Moya-prefix.pch │ │ ├── Moya-umbrella.h │ │ ├── Moya.modulemap │ │ └── Moya.xcconfig │ ├── Pods-ifanr │ │ ├── Info.plist │ │ ├── Pods-ifanr-acknowledgements.markdown │ │ ├── Pods-ifanr-acknowledgements.plist │ │ ├── Pods-ifanr-dummy.m │ │ ├── Pods-ifanr-frameworks.sh │ │ ├── Pods-ifanr-resources.sh │ │ ├── Pods-ifanr-umbrella.h │ │ ├── Pods-ifanr.debug.xcconfig │ │ ├── Pods-ifanr.modulemap │ │ └── Pods-ifanr.release.xcconfig │ ├── Result │ │ ├── Info.plist │ │ ├── Result-dummy.m │ │ ├── Result-prefix.pch │ │ ├── Result-umbrella.h │ │ ├── Result.modulemap │ │ └── Result.xcconfig │ ├── RxSwift │ │ ├── Info.plist │ │ ├── RxSwift-dummy.m │ │ ├── RxSwift-prefix.pch │ │ ├── RxSwift-umbrella.h │ │ ├── RxSwift.modulemap │ │ └── RxSwift.xcconfig │ ├── SnapKit │ │ ├── Info.plist │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.modulemap │ │ └── SnapKit.xcconfig │ ├── YYCache │ │ ├── Info.plist │ │ ├── YYCache-dummy.m │ │ ├── YYCache-prefix.pch │ │ ├── YYCache-umbrella.h │ │ ├── YYCache.modulemap │ │ └── YYCache.xcconfig │ ├── YYImage │ │ ├── Info.plist │ │ ├── YYImage-dummy.m │ │ ├── YYImage-prefix.pch │ │ ├── YYImage-umbrella.h │ │ ├── YYImage.modulemap │ │ └── YYImage.xcconfig │ └── YYWebImage │ │ ├── Info.plist │ │ ├── YYWebImage-dummy.m │ │ ├── YYWebImage-prefix.pch │ │ ├── YYWebImage-umbrella.h │ │ ├── YYWebImage.modulemap │ │ └── YYWebImage.xcconfig ├── YYCache │ ├── LICENSE │ ├── README.md │ └── YYCache │ │ ├── YYCache.h │ │ ├── YYCache.m │ │ ├── YYDiskCache.h │ │ ├── YYDiskCache.m │ │ ├── YYKVStorage.h │ │ ├── YYKVStorage.m │ │ ├── YYMemoryCache.h │ │ └── YYMemoryCache.m ├── YYImage │ ├── LICENSE │ ├── README.md │ └── YYImage │ │ ├── YYAnimatedImageView.h │ │ ├── YYAnimatedImageView.m │ │ ├── YYFrameImage.h │ │ ├── YYFrameImage.m │ │ ├── YYImage.h │ │ ├── YYImage.m │ │ ├── YYImageCoder.h │ │ ├── YYImageCoder.m │ │ ├── YYSpriteSheetImage.h │ │ └── YYSpriteSheetImage.m └── YYWebImage │ ├── LICENSE │ ├── README.md │ └── YYWebImage │ ├── Categories │ ├── CALayer+YYWebImage.h │ ├── CALayer+YYWebImage.m │ ├── MKAnnotationView+YYWebImage.h │ ├── MKAnnotationView+YYWebImage.m │ ├── UIButton+YYWebImage.h │ ├── UIButton+YYWebImage.m │ ├── UIImage+YYWebImage.h │ ├── UIImage+YYWebImage.m │ ├── UIImageView+YYWebImage.h │ ├── UIImageView+YYWebImage.m │ ├── _YYWebImageSetter.h │ └── _YYWebImageSetter.m │ ├── YYImageCache.h │ ├── YYImageCache.m │ ├── YYWebImage.h │ ├── YYWebImageManager.h │ ├── YYWebImageManager.m │ ├── YYWebImageOperation.h │ └── YYWebImageOperation.m ├── iOSInjectionProject ├── BundleContents.h ├── BundleContents.m ├── InjectionBundle-Info.plist ├── InjectionBundle-Prefix.pch └── InjectionBundle.xcodeproj │ └── project.pbxproj ├── ifanr.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── ifanr.xcscmblueprint ├── ifanr.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── ifanr.xcscmblueprint ├── ifanr ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ ├── Category │ │ ├── Contents.json │ │ ├── category_article_list_business_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_business_bg.png │ │ ├── category_article_list_car_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_car_bg.png │ │ ├── category_article_list_dasheng_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_dasheng_bg.png │ │ ├── category_article_list_evaluation_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_evaluation_bg.png │ │ ├── category_article_list_interview_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_interview_bg.png │ │ ├── category_article_list_iseed_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_iseed_bg.png │ │ ├── category_article_list_list_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_list_bg.png │ │ ├── category_article_list_picture_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_picture_bg.png │ │ ├── category_article_list_product_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_product_bg.png │ │ ├── category_article_list_shudu_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_shudu_bg.png │ │ ├── category_article_list_video_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_article_list_video_bg.png │ │ ├── category_menu_business_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_business_bg.png │ │ ├── category_menu_business_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_business_icon.png │ │ ├── category_menu_car_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_car_bg.png │ │ ├── category_menu_car_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_car_icon.png │ │ ├── category_menu_dasheng_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_dasheng_bg.png │ │ ├── category_menu_dasheng_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_dasheng_icon.png │ │ ├── category_menu_evaluation_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_evaluation_bg.png │ │ ├── category_menu_evaluation_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_evaluation_icon.png │ │ ├── category_menu_home_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_home_bg.png │ │ ├── category_menu_home_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_home_icon.png │ │ ├── category_menu_interview_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_interview_bg.png │ │ ├── category_menu_interview_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_interview_icon.png │ │ ├── category_menu_iseed_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_iseed_bg.png │ │ ├── category_menu_iseed_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_iseed_icon.png │ │ ├── category_menu_list_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_list_bg.png │ │ ├── category_menu_list_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_list_icon.png │ │ ├── category_menu_picture_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_picture_bg.png │ │ ├── category_menu_picture_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_picture_icon.png │ │ ├── category_menu_product_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_product_bg.png │ │ ├── category_menu_product_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_product_icon.png │ │ ├── category_menu_shudu_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_shudu_bg.png │ │ ├── category_menu_shudu_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_shudu_icon.png │ │ ├── category_menu_video_bg.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_video_bg.png │ │ └── category_menu_video_icon.imageset │ │ │ ├── Contents.json │ │ │ └── category_menu_video_icon.png │ ├── Contents.json │ ├── Home │ │ ├── Contents.json │ │ ├── heart_selected_false.imageset │ │ │ ├── Contents.json │ │ │ └── heart_selected_false.png │ │ ├── heart_selected_true.imageset │ │ │ ├── Contents.json │ │ │ └── heart_selected_true.png │ │ ├── ic_dasheng.imageset │ │ │ ├── Contents.json │ │ │ └── ic_dasheng.png │ │ └── ic_shudu.imageset │ │ │ ├── Contents.json │ │ │ └── ic_shudu.png │ ├── HomeView │ │ ├── Contents.json │ │ ├── appso_header_background.imageset │ │ │ ├── Contents.json │ │ │ └── appso_header_background.jpg │ │ ├── buzz_header_background.imageset │ │ │ ├── Contents.json │ │ │ └── buzz_header_background.jpg │ │ ├── coolbuy_header_background.imageset │ │ │ ├── Contents.json │ │ │ └── coolbuy_header_background.jpg │ │ ├── ic_circle.imageset │ │ │ ├── Contents.json │ │ │ └── ic_circle.png │ │ ├── ic_hamburg.imageset │ │ │ ├── Contents.json │ │ │ └── ic_hamburg.png │ │ ├── ic_hamburg_red.imageset │ │ │ ├── Contents.json │ │ │ └── ic_hamburg_red.png │ │ ├── mind_store_header_background.imageset │ │ │ ├── Contents.json │ │ │ └── mind_store_header_background.png │ │ ├── mind_store_vote_background_voted_false.imageset │ │ │ ├── Contents.json │ │ │ └── mind_store_vote_background_voted_false.png │ │ ├── mind_store_vote_background_voted_true.imageset │ │ │ ├── Contents.json │ │ │ └── mind_store_vote_background_voted_true.png │ │ ├── tag_all_presses.imageset │ │ │ ├── Contents.json │ │ │ └── tag_all_presses.png │ │ ├── tag_appsolution.imageset │ │ │ ├── Contents.json │ │ │ └── tag_appsolution.png │ │ ├── tag_coolbuy.imageset │ │ │ ├── Contents.json │ │ │ └── tag_coolbuy.png │ │ ├── tag_happeningnow.imageset │ │ │ ├── Contents.json │ │ │ └── tag_happeningnow.png │ │ ├── tag_latest_press.imageset │ │ │ ├── Contents.json │ │ │ └── tag_latest_press.png │ │ └── tag_more_columns.imageset │ │ │ ├── Contents.json │ │ │ └── tag_more_columns.png │ ├── Menu │ │ ├── Contents.json │ │ ├── ic_about.imageset │ │ │ ├── Contents.json │ │ │ └── ic_about.png │ │ ├── ic_login.imageset │ │ │ ├── Contents.json │ │ │ └── ic_login.png │ │ ├── ic_profile_logo.imageset │ │ │ ├── Contents.json │ │ │ └── ic_profile_logo.png │ │ ├── ic_report.imageset │ │ │ ├── Contents.json │ │ │ └── ic_report.png │ │ ├── ic_search.imageset │ │ │ ├── Contents.json │ │ │ └── ic_search.png │ │ ├── ic_setting.imageset │ │ │ ├── Contents.json │ │ │ └── ic_setting.png │ │ ├── ic_start.imageset │ │ │ ├── Contents.json │ │ │ └── ic_start.png │ │ ├── launch_logo.imageset │ │ │ ├── Contents.json │ │ │ └── launch_logo.png │ │ ├── place_holder_image.imageset │ │ │ ├── Contents.json │ │ │ └── place_holder_image.png │ │ └── profile_background.imageset │ │ │ ├── Contents.json │ │ │ └── profile_background.png │ ├── MindStoreDetail │ │ ├── Contents.json │ │ ├── ic_mind_store_comment.imageset │ │ │ ├── Contents.json │ │ │ └── ic_mind_store_comment.png │ │ ├── ic_mind_store_like.imageset │ │ │ ├── Contents.json │ │ │ └── ic_mind_store_like.png │ │ ├── mind_store_comment_background.imageset │ │ │ ├── Contents.json │ │ │ └── mind_store_comment_background.png │ │ └── place_holder_avatar.imageset │ │ │ ├── Contents.json │ │ │ └── place_holder_avatar.png │ ├── NewsFlashDetail │ │ ├── Contents.json │ │ ├── ic_article_back.imageset │ │ │ ├── Contents.json │ │ │ └── ic_article_back.png │ │ ├── ic_back.imageset │ │ │ ├── Contents.json │ │ │ └── ic_back.png │ │ ├── ic_close.imageset │ │ │ ├── Contents.json │ │ │ └── ic_close.png │ │ ├── ic_comment_bar_share.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_bar_share.png │ │ ├── ic_refresh.imageset │ │ │ ├── Contents.json │ │ │ └── ic_refresh.png │ │ ├── ic_share.imageset │ │ │ ├── Contents.json │ │ │ └── ic_share.png │ │ └── ic_system_browser.imageset │ │ │ ├── Contents.json │ │ │ └── ic_system_browser.png │ ├── PlayingZhiDetail │ │ ├── Contents.json │ │ ├── comments │ │ │ ├── Contents.json │ │ │ ├── comment_rating_down_black.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── comment_rating_down_black.png │ │ │ ├── comment_rating_down_grey.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── comment_rating_down_grey.png │ │ │ ├── comment_rating_up_grey.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── comment_rating_up_grey.png │ │ │ └── comment_rating_up_red.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── comment_rating_up_red.png │ │ ├── ic_comment.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment.png │ │ ├── ic_comment_bar_like_false.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_bar_like_false.png │ │ └── ic_comment_bar_like_true.imageset │ │ │ ├── Contents.json │ │ │ └── ic_comment_bar_like_true.png │ └── share │ │ ├── Contents.json │ │ ├── ic_dialog_share.imageset │ │ ├── Contents.json │ │ └── ic_dialog_share.png │ │ ├── share_more.imageset │ │ ├── Contents.json │ │ └── share_more.png │ │ ├── share_wechat.imageset │ │ ├── Contents.json │ │ └── share_wechat.png │ │ └── share_wechat_moment.imageset │ │ ├── Contents.json │ │ └── share_wechat_moment.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Constants │ ├── APIConstant.swift │ └── Constant.swift ├── Controllers │ ├── AppSoViewController │ │ └── AppSoViewController.swift │ ├── Base │ │ ├── BasePageController.swift │ │ └── IFBaseNavController.swift │ ├── CategoryController │ │ └── CategoryController.swift │ ├── DetailController │ │ ├── IFDetailCommentVC.swift │ │ ├── IFDetailsController.swift │ │ └── IFSafariController.swift │ ├── HomeViewController │ │ └── HomeViewController.swift │ ├── MainViewController │ │ ├── MainViewController.swift │ │ ├── MainViewController.swift.BACKUP.6044.swift │ │ ├── MainViewController.swift.BASE.6044.swift │ │ ├── MainViewController.swift.LOCAL.6044.swift │ │ └── MainViewController.swift.REMOTE.6044.swift │ ├── MenuController │ │ └── MenuViewController.swift │ ├── MindStoreController │ │ ├── MindStoreDetailController.swift │ │ └── MindStoreViewController.swift │ ├── NewFeatureController │ │ └── NewFeatureController.swift │ ├── NewsFlashController │ │ └── NewsFlashController.swift │ ├── PlayingZhiController │ │ └── PlayingZhiController.swift │ ├── SearchController │ │ └── SearchViewController.swift │ └── SettingController │ │ └── SettingViewController.swift ├── Extension │ ├── ControllerReusable.swift │ ├── NSDate+IF.swift │ ├── NSMutableAttributedString+ifanr.swift │ ├── Reusable.swift │ ├── ShareResuable.swift │ ├── String+ifanr.swift │ ├── UIFont+ifanr.swift │ ├── UIImage+ifanr.swift │ ├── UIImageView+ifanr.swift │ ├── UILabel+IF.swift │ ├── UITableView+ifanr.swift │ ├── UIView+Frame.swift │ ├── UIView+icon.swift │ └── UIViewController+IF.swift ├── Info.plist ├── Models │ ├── CommentModel │ │ └── CommentModel.swift │ ├── CommonModel.swift │ ├── Initable.swift │ ├── MainModel │ │ ├── CategoryModel.swift │ │ └── TableHeaderModel.swift │ ├── MenuModel │ │ └── MenuTabModel.swift │ ├── MindStoreModel │ │ ├── MindStoreCommentModel.swift │ │ ├── MindStoreModel.swift │ │ └── MindStoreVoteModel.swift │ └── SettingModel │ │ └── SettingModel.swift ├── Other │ ├── Font │ │ ├── DINPro-Medium.TTF │ │ ├── FZLTXIHJW--GB1-0.TTF │ │ └── FZLTZCHJW--GB1-0.TTF │ ├── Lib │ │ └── YYFPSLabel │ │ │ ├── YYFPSLabel.h │ │ │ └── YYFPSLabel.m │ └── Utils │ │ └── ShareSDKUtil.swift ├── Resources │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.gif │ ├── 5.gif │ ├── controllerNavgation.png │ ├── ifanrVideo.mp4 │ ├── logo.png │ └── 爱范儿API.rtf ├── Services │ └── IFanrService.swift ├── Views │ ├── AppSoView │ │ └── AppSoTableViewCell.swift │ ├── CategoryView │ │ ├── CategoryListHeaderView.swift │ │ ├── CategoryView.swift │ │ └── CategoryViewCell.swift │ ├── DetailsView │ │ ├── BottomToolsBar.swift │ │ ├── CommentHeaderView.swift │ │ ├── CommentTableViewCell.swift │ │ ├── CommentsCellResuable.swift │ │ ├── HeaderBackView.swift │ │ ├── ShareView.swift │ │ └── SmallCommentTableViewCell.swift │ ├── HomeView │ │ ├── HomeHeaderItem.swift │ │ ├── HomeHeaderView.swift │ │ ├── HomeLatestDataCell.swift │ │ ├── HomeLatestImageCell.swift │ │ ├── HomeLatestTextCell.swift │ │ ├── HomePageControl.swift │ │ └── HomePopularLayout.swift │ ├── MainView │ │ ├── MainHeaderView.swift │ │ └── TableHeaderView.swift │ ├── MenuView │ │ ├── MenuHeaaderView.swift │ │ └── MenuTableViewCell.swift │ ├── MindStoreView │ │ ├── MindStoreTableViewCell.swift │ │ └── MindStoreVotedView.swift │ ├── NewsFlashView │ │ └── NewsFlashTableViewCell.swift │ ├── PlayingZhiView │ │ └── PlayingZhiTableViewCell.swift │ ├── PullToRefresh │ │ ├── ActivityIndicatorView.swift │ │ ├── LoadMoreView.swift │ │ └── PullToRefreshView.swift │ └── SettingView │ │ ├── SettingHeaderView.swift │ │ └── SettingViewCell.swift └── ifanr-Bridging-Header.h ├── ifanrTests ├── Info.plist └── ifanrTests.swift └── ifanrUITests ├── Info.plist └── ifanrUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/README.md -------------------------------------------------------------------------------- /ifanr/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Podfile -------------------------------------------------------------------------------- /ifanr/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Podfile.lock -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /ifanr/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /ifanr/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Manifest.lock -------------------------------------------------------------------------------- /ifanr/Pods/MonkeyKing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/MonkeyKing/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/MonkeyKing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/MonkeyKing/README.md -------------------------------------------------------------------------------- /ifanr/Pods/MonkeyKing/Sources/AnyActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/MonkeyKing/Sources/AnyActivity.swift -------------------------------------------------------------------------------- /ifanr/Pods/MonkeyKing/Sources/MonkeyKing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/MonkeyKing/Sources/MonkeyKing.swift -------------------------------------------------------------------------------- /ifanr/Pods/MonkeyKing/Sources/Networking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/MonkeyKing/Sources/Networking.swift -------------------------------------------------------------------------------- /ifanr/Pods/Moya/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Moya/License.md -------------------------------------------------------------------------------- /ifanr/Pods/Moya/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Moya/Readme.md -------------------------------------------------------------------------------- /ifanr/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ifanr/Pods/Result/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Result/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/Result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Result/README.md -------------------------------------------------------------------------------- /ifanr/Pods/Result/Result/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Result/Result/Result.swift -------------------------------------------------------------------------------- /ifanr/Pods/Result/Result/ResultProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Result/Result/ResultProtocol.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /ifanr/Pods/RxSwift/RxSwift/Subjects/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/RxSwift/RxSwift/Subjects/Variable.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintConfig.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintDSL.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintInsets.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintView.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/UILayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/UILayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /ifanr/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/MonkeyKing/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/MonkeyKing/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/MonkeyKing/MonkeyKing.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Moya/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Moya/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Moya/Moya-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Moya/Moya-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Moya/Moya-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Moya/Moya-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Moya/Moya-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Moya/Moya-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Moya/Moya.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Moya/Moya.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Moya/Moya.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Moya/Moya.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-acknowledgements.markdown -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-acknowledgements.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-frameworks.sh -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-resources.sh -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr.debug.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Pods-ifanr/Pods-ifanr.release.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Result/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Result/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Result/Result-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Result/Result-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Result/Result-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Result/Result-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Result/Result-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Result/Result-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Result/Result.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Result/Result.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/Result/Result.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/Result/Result.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/RxSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/RxSwift/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/RxSwift/RxSwift.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/RxSwift/RxSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/RxSwift/RxSwift.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/SnapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/SnapKit/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/SnapKit/SnapKit.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYCache/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYCache/YYCache-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYCache/YYCache-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYCache/YYCache-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYCache/YYCache-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYCache/YYCache-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYCache/YYCache-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYCache/YYCache.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYCache/YYCache.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYCache/YYCache.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYCache/YYCache.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYImage/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYImage/YYImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYImage/YYImage-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYImage/YYImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYImage/YYImage-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYImage/YYImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYImage/YYImage-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYImage/YYImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYImage/YYImage.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYImage/YYImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYImage/YYImage.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYWebImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYWebImage/Info.plist -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYWebImage/YYWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYWebImage/YYWebImage-dummy.m -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYWebImage/YYWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYWebImage/YYWebImage-prefix.pch -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYWebImage/YYWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYWebImage/YYWebImage-umbrella.h -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYWebImage/YYWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYWebImage/YYWebImage.modulemap -------------------------------------------------------------------------------- /ifanr/Pods/Target Support Files/YYWebImage/YYWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/Target Support Files/YYWebImage/YYWebImage.xcconfig -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/README.md -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYCache.h -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYCache.m -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYDiskCache.h -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYDiskCache.m -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYKVStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYKVStorage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYKVStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYKVStorage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYMemoryCache.h -------------------------------------------------------------------------------- /ifanr/Pods/YYCache/YYCache/YYMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYCache/YYCache/YYMemoryCache.m -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/README.md -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYAnimatedImageView.h -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYAnimatedImageView.m -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYFrameImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYFrameImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYFrameImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYFrameImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYImageCoder.h -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYImageCoder.m -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYImage/YYImage/YYSpriteSheetImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYImage/YYImage/YYSpriteSheetImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/LICENSE -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/README.md -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/CALayer+YYWebImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/MKAnnotationView+YYWebImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/UIButton+YYWebImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImage+YYWebImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/UIImageView+YYWebImage.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/Categories/_YYWebImageSetter.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYImageCache.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYImageCache.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYWebImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYWebImage.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYWebImageManager.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYWebImageManager.m -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYWebImageOperation.h -------------------------------------------------------------------------------- /ifanr/Pods/YYWebImage/YYWebImage/YYWebImageOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/Pods/YYWebImage/YYWebImage/YYWebImageOperation.m -------------------------------------------------------------------------------- /ifanr/iOSInjectionProject/BundleContents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/iOSInjectionProject/BundleContents.h -------------------------------------------------------------------------------- /ifanr/iOSInjectionProject/BundleContents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/iOSInjectionProject/BundleContents.m -------------------------------------------------------------------------------- /ifanr/iOSInjectionProject/InjectionBundle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/iOSInjectionProject/InjectionBundle-Info.plist -------------------------------------------------------------------------------- /ifanr/iOSInjectionProject/InjectionBundle-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/iOSInjectionProject/InjectionBundle-Prefix.pch -------------------------------------------------------------------------------- /ifanr/iOSInjectionProject/InjectionBundle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/iOSInjectionProject/InjectionBundle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ifanr/ifanr.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ifanr/ifanr.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ifanr/ifanr.xcodeproj/project.xcworkspace/xcshareddata/ifanr.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr.xcodeproj/project.xcworkspace/xcshareddata/ifanr.xcscmblueprint -------------------------------------------------------------------------------- /ifanr/ifanr.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ifanr/ifanr.xcworkspace/xcshareddata/ifanr.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr.xcworkspace/xcshareddata/ifanr.xcscmblueprint -------------------------------------------------------------------------------- /ifanr/ifanr/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/AppDelegate.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_business_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_business_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_business_bg.imageset/category_article_list_business_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_business_bg.imageset/category_article_list_business_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_car_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_car_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_car_bg.imageset/category_article_list_car_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_car_bg.imageset/category_article_list_car_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_dasheng_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_dasheng_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_dasheng_bg.imageset/category_article_list_dasheng_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_dasheng_bg.imageset/category_article_list_dasheng_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_evaluation_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_evaluation_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_evaluation_bg.imageset/category_article_list_evaluation_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_evaluation_bg.imageset/category_article_list_evaluation_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_interview_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_interview_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_interview_bg.imageset/category_article_list_interview_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_interview_bg.imageset/category_article_list_interview_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_iseed_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_iseed_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_iseed_bg.imageset/category_article_list_iseed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_iseed_bg.imageset/category_article_list_iseed_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_list_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_list_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_list_bg.imageset/category_article_list_list_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_list_bg.imageset/category_article_list_list_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_picture_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_picture_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_picture_bg.imageset/category_article_list_picture_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_picture_bg.imageset/category_article_list_picture_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_product_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_product_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_product_bg.imageset/category_article_list_product_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_product_bg.imageset/category_article_list_product_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_shudu_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_shudu_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_shudu_bg.imageset/category_article_list_shudu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_shudu_bg.imageset/category_article_list_shudu_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_video_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_video_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_article_list_video_bg.imageset/category_article_list_video_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_article_list_video_bg.imageset/category_article_list_video_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_business_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_business_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_business_bg.imageset/category_menu_business_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_business_bg.imageset/category_menu_business_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_business_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_business_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_business_icon.imageset/category_menu_business_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_business_icon.imageset/category_menu_business_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_car_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_car_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_car_bg.imageset/category_menu_car_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_car_bg.imageset/category_menu_car_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_car_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_car_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_car_icon.imageset/category_menu_car_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_car_icon.imageset/category_menu_car_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_bg.imageset/category_menu_dasheng_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_bg.imageset/category_menu_dasheng_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_icon.imageset/category_menu_dasheng_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_dasheng_icon.imageset/category_menu_dasheng_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_bg.imageset/category_menu_evaluation_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_bg.imageset/category_menu_evaluation_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_icon.imageset/category_menu_evaluation_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_evaluation_icon.imageset/category_menu_evaluation_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_home_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_home_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_home_bg.imageset/category_menu_home_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_home_bg.imageset/category_menu_home_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_home_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_home_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_home_icon.imageset/category_menu_home_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_home_icon.imageset/category_menu_home_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_bg.imageset/category_menu_interview_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_bg.imageset/category_menu_interview_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_icon.imageset/category_menu_interview_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_interview_icon.imageset/category_menu_interview_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_bg.imageset/category_menu_iseed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_bg.imageset/category_menu_iseed_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_icon.imageset/category_menu_iseed_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_iseed_icon.imageset/category_menu_iseed_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_list_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_list_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_list_bg.imageset/category_menu_list_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_list_bg.imageset/category_menu_list_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_list_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_list_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_list_icon.imageset/category_menu_list_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_list_icon.imageset/category_menu_list_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_bg.imageset/category_menu_picture_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_bg.imageset/category_menu_picture_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_icon.imageset/category_menu_picture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_picture_icon.imageset/category_menu_picture_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_product_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_product_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_product_bg.imageset/category_menu_product_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_product_bg.imageset/category_menu_product_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_product_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_product_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_product_icon.imageset/category_menu_product_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_product_icon.imageset/category_menu_product_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_bg.imageset/category_menu_shudu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_bg.imageset/category_menu_shudu_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_icon.imageset/category_menu_shudu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_shudu_icon.imageset/category_menu_shudu_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_video_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_video_bg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_video_bg.imageset/category_menu_video_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_video_bg.imageset/category_menu_video_bg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_video_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_video_icon.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Category/category_menu_video_icon.imageset/category_menu_video_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Category/category_menu_video_icon.imageset/category_menu_video_icon.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/heart_selected_false.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/heart_selected_false.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/heart_selected_false.imageset/heart_selected_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/heart_selected_false.imageset/heart_selected_false.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/heart_selected_true.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/heart_selected_true.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/heart_selected_true.imageset/heart_selected_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/heart_selected_true.imageset/heart_selected_true.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/ic_dasheng.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/ic_dasheng.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/ic_dasheng.imageset/ic_dasheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/ic_dasheng.imageset/ic_dasheng.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/ic_shudu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/ic_shudu.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Home/ic_shudu.imageset/ic_shudu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Home/ic_shudu.imageset/ic_shudu.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/appso_header_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/appso_header_background.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/appso_header_background.imageset/appso_header_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/appso_header_background.imageset/appso_header_background.jpg -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/buzz_header_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/buzz_header_background.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/buzz_header_background.imageset/buzz_header_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/buzz_header_background.imageset/buzz_header_background.jpg -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/coolbuy_header_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/coolbuy_header_background.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/coolbuy_header_background.imageset/coolbuy_header_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/coolbuy_header_background.imageset/coolbuy_header_background.jpg -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/ic_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/ic_circle.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/ic_circle.imageset/ic_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/ic_circle.imageset/ic_circle.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg.imageset/ic_hamburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg.imageset/ic_hamburg.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg_red.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg_red.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg_red.imageset/ic_hamburg_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/ic_hamburg_red.imageset/ic_hamburg_red.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/mind_store_header_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/mind_store_header_background.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/mind_store_header_background.imageset/mind_store_header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/mind_store_header_background.imageset/mind_store_header_background.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_false.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_false.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_false.imageset/mind_store_vote_background_voted_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_false.imageset/mind_store_vote_background_voted_false.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_true.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_true.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_true.imageset/mind_store_vote_background_voted_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/mind_store_vote_background_voted_true.imageset/mind_store_vote_background_voted_true.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_all_presses.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_all_presses.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_all_presses.imageset/tag_all_presses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_all_presses.imageset/tag_all_presses.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_appsolution.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_appsolution.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_appsolution.imageset/tag_appsolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_appsolution.imageset/tag_appsolution.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_coolbuy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_coolbuy.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_coolbuy.imageset/tag_coolbuy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_coolbuy.imageset/tag_coolbuy.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_happeningnow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_happeningnow.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_happeningnow.imageset/tag_happeningnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_happeningnow.imageset/tag_happeningnow.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_latest_press.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_latest_press.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_latest_press.imageset/tag_latest_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_latest_press.imageset/tag_latest_press.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_more_columns.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_more_columns.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/HomeView/tag_more_columns.imageset/tag_more_columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/HomeView/tag_more_columns.imageset/tag_more_columns.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_about.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_about.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_about.imageset/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_about.imageset/ic_about.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_login.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_login.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_login.imageset/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_login.imageset/ic_login.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_profile_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_profile_logo.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_profile_logo.imageset/ic_profile_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_profile_logo.imageset/ic_profile_logo.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_report.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_report.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_report.imageset/ic_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_report.imageset/ic_report.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_search.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_search.imageset/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_search.imageset/ic_search.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_setting.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_setting.imageset/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_setting.imageset/ic_setting.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_start.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_start.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/ic_start.imageset/ic_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/ic_start.imageset/ic_start.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/launch_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/launch_logo.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/launch_logo.imageset/launch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/launch_logo.imageset/launch_logo.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/place_holder_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/place_holder_image.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/place_holder_image.imageset/place_holder_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/place_holder_image.imageset/place_holder_image.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/profile_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/profile_background.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/Menu/profile_background.imageset/profile_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/Menu/profile_background.imageset/profile_background.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_comment.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_comment.imageset/ic_mind_store_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_comment.imageset/ic_mind_store_comment.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_like.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_like.imageset/ic_mind_store_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/ic_mind_store_like.imageset/ic_mind_store_like.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/mind_store_comment_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/mind_store_comment_background.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/mind_store_comment_background.imageset/mind_store_comment_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/mind_store_comment_background.imageset/mind_store_comment_background.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/place_holder_avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/place_holder_avatar.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/MindStoreDetail/place_holder_avatar.imageset/place_holder_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/MindStoreDetail/place_holder_avatar.imageset/place_holder_avatar.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_article_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_article_back.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_article_back.imageset/ic_article_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_article_back.imageset/ic_article_back.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_back.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_back.imageset/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_back.imageset/ic_back.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_close.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_close.imageset/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_close.imageset/ic_close.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_comment_bar_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_comment_bar_share.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_comment_bar_share.imageset/ic_comment_bar_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_comment_bar_share.imageset/ic_comment_bar_share.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_refresh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_refresh.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_refresh.imageset/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_refresh.imageset/ic_refresh.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_share.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_share.imageset/ic_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_share.imageset/ic_share.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_system_browser.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_system_browser.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_system_browser.imageset/ic_system_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/NewsFlashDetail/ic_system_browser.imageset/ic_system_browser.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_black.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_black.imageset/comment_rating_down_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_black.imageset/comment_rating_down_black.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_grey.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_grey.imageset/comment_rating_down_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_down_grey.imageset/comment_rating_down_grey.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_grey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_grey.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_grey.imageset/comment_rating_up_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_grey.imageset/comment_rating_up_grey.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_red.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_red.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_red.imageset/comment_rating_up_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/comments/comment_rating_up_red.imageset/comment_rating_up_red.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment.imageset/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment.imageset/ic_comment.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_false.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_false.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_false.imageset/ic_comment_bar_like_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_false.imageset/ic_comment_bar_like_false.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_true.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_true.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_true.imageset/ic_comment_bar_like_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/PlayingZhiDetail/ic_comment_bar_like_true.imageset/ic_comment_bar_like_true.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/ic_dialog_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/ic_dialog_share.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/ic_dialog_share.imageset/ic_dialog_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/ic_dialog_share.imageset/ic_dialog_share.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/share_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/share_more.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/share_more.imageset/share_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/share_more.imageset/share_more.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/share_wechat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/share_wechat.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/share_wechat.imageset/share_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/share_wechat.imageset/share_wechat.png -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/share_wechat_moment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/share_wechat_moment.imageset/Contents.json -------------------------------------------------------------------------------- /ifanr/ifanr/Assets.xcassets/share/share_wechat_moment.imageset/share_wechat_moment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Assets.xcassets/share/share_wechat_moment.imageset/share_wechat_moment.png -------------------------------------------------------------------------------- /ifanr/ifanr/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ifanr/ifanr/Constants/APIConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Constants/APIConstant.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Constants/Constant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Constants/Constant.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/AppSoViewController/AppSoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/AppSoViewController/AppSoViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/Base/BasePageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/Base/BasePageController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/Base/IFBaseNavController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/Base/IFBaseNavController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/CategoryController/CategoryController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/CategoryController/CategoryController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/DetailController/IFDetailCommentVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/DetailController/IFDetailCommentVC.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/DetailController/IFDetailsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/DetailController/IFDetailsController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/DetailController/IFSafariController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/DetailController/IFSafariController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/HomeViewController/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/HomeViewController/HomeViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MainViewController/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MainViewController/MainViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.BACKUP.6044.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.BACKUP.6044.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.BASE.6044.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.BASE.6044.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.LOCAL.6044.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.LOCAL.6044.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.REMOTE.6044.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MainViewController/MainViewController.swift.REMOTE.6044.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MenuController/MenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MenuController/MenuViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MindStoreController/MindStoreDetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MindStoreController/MindStoreDetailController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/MindStoreController/MindStoreViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/MindStoreController/MindStoreViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/NewFeatureController/NewFeatureController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/NewFeatureController/NewFeatureController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/NewsFlashController/NewsFlashController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/NewsFlashController/NewsFlashController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/PlayingZhiController/PlayingZhiController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/PlayingZhiController/PlayingZhiController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/SearchController/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/SearchController/SearchViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Controllers/SettingController/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Controllers/SettingController/SettingViewController.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/ControllerReusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/ControllerReusable.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/NSDate+IF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/NSDate+IF.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/NSMutableAttributedString+ifanr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/NSMutableAttributedString+ifanr.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/Reusable.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/ShareResuable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/ShareResuable.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/String+ifanr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/String+ifanr.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UIFont+ifanr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UIFont+ifanr.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UIImage+ifanr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UIImage+ifanr.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UIImageView+ifanr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UIImageView+ifanr.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UILabel+IF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UILabel+IF.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UITableView+ifanr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UITableView+ifanr.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UIView+Frame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UIView+Frame.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UIView+icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UIView+icon.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Extension/UIViewController+IF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Extension/UIViewController+IF.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Info.plist -------------------------------------------------------------------------------- /ifanr/ifanr/Models/CommentModel/CommentModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/CommentModel/CommentModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/CommonModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/CommonModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/Initable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/Initable.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/MainModel/CategoryModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/MainModel/CategoryModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/MainModel/TableHeaderModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/MainModel/TableHeaderModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/MenuModel/MenuTabModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/MenuModel/MenuTabModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/MindStoreModel/MindStoreCommentModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/MindStoreModel/MindStoreCommentModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/MindStoreModel/MindStoreModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/MindStoreModel/MindStoreModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/MindStoreModel/MindStoreVoteModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/MindStoreModel/MindStoreVoteModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Models/SettingModel/SettingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Models/SettingModel/SettingModel.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Other/Font/DINPro-Medium.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Other/Font/DINPro-Medium.TTF -------------------------------------------------------------------------------- /ifanr/ifanr/Other/Font/FZLTXIHJW--GB1-0.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Other/Font/FZLTXIHJW--GB1-0.TTF -------------------------------------------------------------------------------- /ifanr/ifanr/Other/Font/FZLTZCHJW--GB1-0.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Other/Font/FZLTZCHJW--GB1-0.TTF -------------------------------------------------------------------------------- /ifanr/ifanr/Other/Lib/YYFPSLabel/YYFPSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Other/Lib/YYFPSLabel/YYFPSLabel.h -------------------------------------------------------------------------------- /ifanr/ifanr/Other/Lib/YYFPSLabel/YYFPSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Other/Lib/YYFPSLabel/YYFPSLabel.m -------------------------------------------------------------------------------- /ifanr/ifanr/Other/Utils/ShareSDKUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Other/Utils/ShareSDKUtil.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/1.gif -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/2.gif -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/3.gif -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/4.gif -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/5.gif -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/controllerNavgation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/controllerNavgation.png -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/ifanrVideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/ifanrVideo.mp4 -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/logo.png -------------------------------------------------------------------------------- /ifanr/ifanr/Resources/爱范儿API.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Resources/爱范儿API.rtf -------------------------------------------------------------------------------- /ifanr/ifanr/Services/IFanrService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Services/IFanrService.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/AppSoView/AppSoTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/AppSoView/AppSoTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/CategoryView/CategoryListHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/CategoryView/CategoryListHeaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/CategoryView/CategoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/CategoryView/CategoryView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/CategoryView/CategoryViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/CategoryView/CategoryViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/BottomToolsBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/BottomToolsBar.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/CommentHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/CommentHeaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/CommentTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/CommentTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/CommentsCellResuable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/CommentsCellResuable.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/HeaderBackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/HeaderBackView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/ShareView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/ShareView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/DetailsView/SmallCommentTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/DetailsView/SmallCommentTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomeHeaderItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomeHeaderItem.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomeHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomeHeaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomeLatestDataCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomeLatestDataCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomeLatestImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomeLatestImageCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomeLatestTextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomeLatestTextCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomePageControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomePageControl.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/HomeView/HomePopularLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/HomeView/HomePopularLayout.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/MainView/MainHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/MainView/MainHeaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/MainView/TableHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/MainView/TableHeaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/MenuView/MenuHeaaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/MenuView/MenuHeaaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/MenuView/MenuTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/MenuView/MenuTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/MindStoreView/MindStoreTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/MindStoreView/MindStoreTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/MindStoreView/MindStoreVotedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/MindStoreView/MindStoreVotedView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/NewsFlashView/NewsFlashTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/NewsFlashView/NewsFlashTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/PlayingZhiView/PlayingZhiTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/PlayingZhiView/PlayingZhiTableViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/PullToRefresh/ActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/PullToRefresh/ActivityIndicatorView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/PullToRefresh/LoadMoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/PullToRefresh/LoadMoreView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/PullToRefresh/PullToRefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/PullToRefresh/PullToRefreshView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/SettingView/SettingHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/SettingView/SettingHeaderView.swift -------------------------------------------------------------------------------- /ifanr/ifanr/Views/SettingView/SettingViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/Views/SettingView/SettingViewCell.swift -------------------------------------------------------------------------------- /ifanr/ifanr/ifanr-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanr/ifanr-Bridging-Header.h -------------------------------------------------------------------------------- /ifanr/ifanrTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanrTests/Info.plist -------------------------------------------------------------------------------- /ifanr/ifanrTests/ifanrTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanrTests/ifanrTests.swift -------------------------------------------------------------------------------- /ifanr/ifanrUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanrUITests/Info.plist -------------------------------------------------------------------------------- /ifanr/ifanrUITests/ifanrUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iCodeForever/ifanr/HEAD/ifanr/ifanrUITests/ifanrUITests.swift --------------------------------------------------------------------------------