├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md └── RxSwift-Table-Collection1 ├── .DS_Store ├── 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 ├── Differentiator │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ └── Differentiator │ │ ├── AnimatableSectionModel.swift │ │ ├── AnimatableSectionModelType+ItemPath.swift │ │ ├── AnimatableSectionModelType.swift │ │ ├── Changeset.swift │ │ ├── Diff.swift │ │ ├── IdentifiableType.swift │ │ ├── IdentifiableValue.swift │ │ ├── ItemPath.swift │ │ ├── Optional+Extensions.swift │ │ ├── SectionModel.swift │ │ ├── SectionModelType.swift │ │ └── Utilities.swift ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnimatedImageView.swift │ │ ├── Box.swift │ │ ├── CacheSerializer.swift │ │ ├── Filter.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImagePrefetcher.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageTransition.swift │ │ ├── ImageView+Kingfisher.swift │ │ ├── Indicator.swift │ │ ├── Kingfisher.h │ │ ├── Kingfisher.swift │ │ ├── KingfisherManager.swift │ │ ├── KingfisherOptionsInfo.swift │ │ ├── RequestModifier.swift │ │ ├── Resource.swift │ │ ├── String+MD5.swift │ │ ├── ThreadHelper.swift │ │ └── UIButton+Kingfisher.swift ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ ├── arrow@2x.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── NSBundle+MJRefresh.h │ │ ├── NSBundle+MJRefresh.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md ├── Manifest.lock ├── Moya │ ├── License.md │ ├── Readme.md │ └── Sources │ │ ├── Moya │ │ ├── Cancellable.swift │ │ ├── Endpoint.swift │ │ ├── Image.swift │ │ ├── Moya+Alamofire.swift │ │ ├── MoyaAvailability.swift │ │ ├── MoyaError.swift │ │ ├── MoyaProvider+Defaults.swift │ │ ├── MoyaProvider+Internal.swift │ │ ├── MoyaProvider.swift │ │ ├── MultiTarget.swift │ │ ├── MultipartFormData.swift │ │ ├── Plugin.swift │ │ ├── Plugins │ │ │ ├── AccessTokenPlugin.swift │ │ │ ├── CredentialsPlugin.swift │ │ │ ├── NetworkActivityPlugin.swift │ │ │ └── NetworkLoggerPlugin.swift │ │ ├── Response.swift │ │ └── TargetType.swift │ │ └── RxMoya │ │ ├── Observable+Response.swift │ │ └── RxMoyaProvider.swift ├── ObjectMapper │ ├── LICENSE │ ├── README-CN.md │ └── Sources │ │ ├── CustomDateFormatTransform.swift │ │ ├── DataTransform.swift │ │ ├── DateFormatterTransform.swift │ │ ├── DateTransform.swift │ │ ├── DictionaryTransform.swift │ │ ├── EnumOperators.swift │ │ ├── EnumTransform.swift │ │ ├── FromJSON.swift │ │ ├── HexColorTransform.swift │ │ ├── ISO8601DateTransform.swift │ │ ├── ImmutableMappable.swift │ │ ├── IntegerOperators.swift │ │ ├── Map.swift │ │ ├── MapError.swift │ │ ├── Mappable.swift │ │ ├── Mapper.swift │ │ ├── NSDecimalNumberTransform.swift │ │ ├── Operators.swift │ │ ├── ToJSON.swift │ │ ├── TransformOf.swift │ │ ├── TransformOperators.swift │ │ ├── TransformType.swift │ │ └── URLTransform.swift ├── Pods.xcodeproj │ └── project.pbxproj ├── Result │ ├── LICENSE │ ├── README.md │ └── Result │ │ ├── Result.swift │ │ └── ResultProtocol.swift ├── RxCocoa │ ├── LICENSE.md │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ └── Platform.Linux.swift │ ├── README.md │ └── RxCocoa │ │ ├── CocoaUnits │ │ ├── ControlEvent.swift │ │ ├── ControlProperty.swift │ │ ├── Driver │ │ │ ├── ControlEvent+Driver.swift │ │ │ ├── ControlProperty+Driver.swift │ │ │ ├── Driver+Subscription.swift │ │ │ ├── Driver.swift │ │ │ ├── ObservableConvertibleType+Driver.swift │ │ │ └── Variable+Driver.swift │ │ ├── SharedSequence │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ ├── SharedSequence+Operators.swift │ │ │ ├── SharedSequence.swift │ │ │ └── Variable+SharedSequence.swift │ │ └── UIBindingObserver.swift │ │ ├── Common │ │ ├── ControlTarget.swift │ │ ├── DelegateProxy.swift │ │ ├── DelegateProxyType.swift │ │ ├── NSLayoutConstraint+Rx.swift │ │ ├── Observable+Bind.swift │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ ├── RxTarget.swift │ │ ├── SectionedViewDataSourceType.swift │ │ └── TextInput.swift │ │ ├── Foundation │ │ ├── KVORepresentable+CoreGraphics.swift │ │ ├── KVORepresentable+Swift.swift │ │ ├── KVORepresentable.swift │ │ ├── Logging.swift │ │ ├── NSNotificationCenter+Rx.swift │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ ├── NSObject+Rx.swift │ │ └── URLSession+Rx.swift │ │ ├── Runtime │ │ ├── _RX.m │ │ ├── _RXDelegateProxy.m │ │ ├── _RXKVOObserver.m │ │ ├── _RXObjCRuntime.m │ │ └── include │ │ │ ├── RxCocoaRuntime.h │ │ │ ├── _RX.h │ │ │ ├── _RXDelegateProxy.h │ │ │ ├── _RXKVOObserver.h │ │ │ └── _RXObjCRuntime.h │ │ ├── RxCocoa.h │ │ ├── RxCocoa.swift │ │ └── iOS │ │ ├── DataSources │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ └── RxTableViewReactiveArrayDataSource.swift │ │ ├── Events │ │ └── ItemEvents.swift │ │ ├── NSTextStorage+Rx.swift │ │ ├── Protocols │ │ ├── RxCollectionViewDataSourceType.swift │ │ └── RxTableViewDataSourceType.swift │ │ ├── Proxies │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ ├── RxCollectionViewDelegateProxy.swift │ │ ├── RxPickerViewDelegateProxy.swift │ │ ├── RxScrollViewDelegateProxy.swift │ │ ├── RxSearchBarDelegateProxy.swift │ │ ├── RxSearchControllerDelegateProxy.swift │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ ├── RxTabBarDelegateProxy.swift │ │ ├── RxTableViewDataSourceProxy.swift │ │ ├── RxTableViewDelegateProxy.swift │ │ ├── RxTextStorageDelegateProxy.swift │ │ ├── RxTextViewDelegateProxy.swift │ │ └── RxWebViewDelegateProxy.swift │ │ ├── UIActivityIndicatorView+Rx.swift │ │ ├── UIAlertAction+Rx.swift │ │ ├── UIApplication+Rx.swift │ │ ├── UIBarButtonItem+Rx.swift │ │ ├── UIButton+Rx.swift │ │ ├── UICollectionView+Rx.swift │ │ ├── UIControl+Rx.swift │ │ ├── UIDatePicker+Rx.swift │ │ ├── UIGestureRecognizer+Rx.swift │ │ ├── UIImageView+Rx.swift │ │ ├── UILabel+Rx.swift │ │ ├── UINavigationItem+Rx.swift │ │ ├── UIPageControl+Rx.swift │ │ ├── UIPickerView+Rx.swift │ │ ├── UIProgressView+Rx.swift │ │ ├── UIRefreshControl+Rx.swift │ │ ├── UIScrollView+Rx.swift │ │ ├── UISearchBar+Rx.swift │ │ ├── UISearchController+Rx.swift │ │ ├── UISegmentedControl+Rx.swift │ │ ├── UISlider+Rx.swift │ │ ├── UIStepper+Rx.swift │ │ ├── UISwitch+Rx.swift │ │ ├── UITabBar+Rx.swift │ │ ├── UITabBarController+Rx.swift │ │ ├── UITabBarItem+Rx.swift │ │ ├── UITableView+Rx.swift │ │ ├── UITextField+Rx.swift │ │ ├── UITextView+Rx.swift │ │ ├── UIView+Rx.swift │ │ ├── UIViewController+Rx.swift │ │ └── UIWebView+Rx.swift ├── RxDataSources │ ├── LICENSE.md │ ├── README.md │ └── Sources │ │ └── RxDataSources │ │ ├── AnimationConfiguration.swift │ │ ├── Array+Extensions.swift │ │ ├── CollectionViewSectionedDataSource.swift │ │ ├── DataSources.swift │ │ ├── FloatingPointType+IdentifiableType.swift │ │ ├── IntegerType+IdentifiableType.swift │ │ ├── RxCollectionViewSectionedAnimatedDataSource.swift │ │ ├── RxCollectionViewSectionedReloadDataSource.swift │ │ ├── RxPickerViewAdapter.swift │ │ ├── RxTableViewSectionedAnimatedDataSource.swift │ │ ├── RxTableViewSectionedReloadDataSource.swift │ │ ├── String+IdentifiableType.swift │ │ ├── TableViewSectionedDataSource.swift │ │ └── UI+SectionedViewType.swift ├── RxSwift │ ├── LICENSE.md │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ └── Platform.Linux.swift │ ├── 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 │ │ ├── Bag+Rx.swift │ │ └── 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+Collection.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 │ │ │ ├── Optional.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+Collection.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 │ │ ├── Reactive.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 ├── SVProgressHUD │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ ├── SVProgressHUD.m │ │ ├── SVRadialGradientLayer.h │ │ └── SVRadialGradientLayer.m └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── Differentiator │ ├── Differentiator-dummy.m │ ├── Differentiator-prefix.pch │ ├── Differentiator-umbrella.h │ ├── Differentiator.modulemap │ ├── Differentiator.xcconfig │ └── Info.plist │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.modulemap │ └── Kingfisher.xcconfig │ ├── MJRefresh │ ├── Info.plist │ ├── MJRefresh-dummy.m │ ├── MJRefresh-prefix.pch │ ├── MJRefresh-umbrella.h │ ├── MJRefresh.modulemap │ └── MJRefresh.xcconfig │ ├── Moya │ ├── Info.plist │ ├── Moya-dummy.m │ ├── Moya-prefix.pch │ ├── Moya-umbrella.h │ ├── Moya.modulemap │ └── Moya.xcconfig │ ├── ObjectMapper │ ├── Info.plist │ ├── ObjectMapper-dummy.m │ ├── ObjectMapper-prefix.pch │ ├── ObjectMapper-umbrella.h │ ├── ObjectMapper.modulemap │ └── ObjectMapper.xcconfig │ ├── Pods-RxSwift-Table-Collection │ ├── Info.plist │ ├── Pods-RxSwift-Table-Collection-acknowledgements.markdown │ ├── Pods-RxSwift-Table-Collection-acknowledgements.plist │ ├── Pods-RxSwift-Table-Collection-dummy.m │ ├── Pods-RxSwift-Table-Collection-frameworks.sh │ ├── Pods-RxSwift-Table-Collection-resources.sh │ ├── Pods-RxSwift-Table-Collection-umbrella.h │ ├── Pods-RxSwift-Table-Collection.debug.xcconfig │ ├── Pods-RxSwift-Table-Collection.modulemap │ └── Pods-RxSwift-Table-Collection.release.xcconfig │ ├── Result │ ├── Info.plist │ ├── Result-dummy.m │ ├── Result-prefix.pch │ ├── Result-umbrella.h │ ├── Result.modulemap │ └── Result.xcconfig │ ├── RxCocoa │ ├── Info.plist │ ├── RxCocoa-dummy.m │ ├── RxCocoa-prefix.pch │ ├── RxCocoa-umbrella.h │ ├── RxCocoa.modulemap │ └── RxCocoa.xcconfig │ ├── RxDataSources │ ├── Info.plist │ ├── RxDataSources-dummy.m │ ├── RxDataSources-prefix.pch │ ├── RxDataSources-umbrella.h │ ├── RxDataSources.modulemap │ └── RxDataSources.xcconfig │ ├── RxSwift │ ├── Info.plist │ ├── RxSwift-dummy.m │ ├── RxSwift-prefix.pch │ ├── RxSwift-umbrella.h │ ├── RxSwift.modulemap │ └── RxSwift.xcconfig │ └── SVProgressHUD │ ├── Info.plist │ ├── SVProgressHUD-dummy.m │ ├── SVProgressHUD-prefix.pch │ ├── SVProgressHUD-umbrella.h │ ├── SVProgressHUD.modulemap │ └── SVProgressHUD.xcconfig ├── RxSwift-Table-Collection.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RxSwift-Table-Collection.xcworkspace └── contents.xcworkspacedata └── RxSwift-Table-Collection ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets ├── .DS_Store ├── 1371093644361.imageset │ ├── 1371093644361.png │ ├── 1371093644361@2x.png │ └── Contents.json ├── 1371103804008.imageset │ ├── 1371103804008.png │ ├── 1371103804008@2x.png │ └── Contents.json ├── 1371200551407.imageset │ ├── 1371200551407.png │ ├── 1371200551407@2x.png │ └── Contents.json ├── 1371636483394.imageset │ ├── 1371636483394.png │ ├── 1371636483394@2x.png │ └── Contents.json ├── 1376619482925.imageset │ ├── 1376619482925.png │ ├── 1376619482925@2x.png │ └── Contents.json ├── 1381398467886.imageset │ ├── 1381398467886.png │ ├── 1381398467886@2x.png │ └── Contents.json ├── 1385536285032.imageset │ ├── 1385536285032.png │ ├── 1385536285032@2x.png │ └── Contents.json ├── 173890255948.imageset │ ├── 173890255948.png │ ├── 173890255948@2x.png │ └── Contents.json ├── 173890450691.imageset │ ├── 173890450691.png │ ├── 173890450691@2x.png │ └── Contents.json ├── 174074057446.imageset │ ├── 174074057446.png │ ├── 174074057446@2x.png │ └── Contents.json ├── 175792428160.imageset │ ├── 175792428160.png │ ├── 175792428160@2x.png │ └── Contents.json ├── 175792432633.imageset │ ├── 175792432633.png │ ├── 175792432633@2x.png │ └── Contents.json ├── 176391685171.imageset │ ├── 176391685171.png │ ├── 176391685171@2x.png │ └── Contents.json ├── 178647406694.imageset │ ├── 178647406694.png │ ├── 178647406694@2x.png │ └── Contents.json ├── 180008225874.imageset │ ├── 180008225874.png │ ├── 180008225874@2x.png │ └── Contents.json ├── 183638769835.imageset │ ├── 183638769835.png │ ├── 183638769835@2x.png │ └── Contents.json ├── 186599920512.imageset │ ├── 186599920512.png │ ├── 186599920512@2x.png │ └── Contents.json ├── 188475951613.imageset │ ├── 188475951613.png │ ├── 188475951613@2x.png │ └── Contents.json ├── 190833295927.imageset │ ├── 190833295927.png │ ├── 190833295927@2x.png │ └── Contents.json ├── 192131975792.imageset │ ├── 192131975792.png │ ├── 192131975792@2x.png │ └── Contents.json ├── 193333009937.imageset │ ├── 193333009937.png │ ├── 193333009937@2x.png │ └── Contents.json ├── 195755907116.imageset │ ├── 195755907116.png │ ├── 195755907116@2x.png │ └── Contents.json ├── 196703018435.imageset │ ├── 196703018435.png │ ├── 196703018435@2x.png │ └── Contents.json ├── 197908560081.imageset │ ├── 197908560081.png │ ├── 197908560081@2x.png │ └── Contents.json ├── 198079477246.imageset │ ├── 198079477246.png │ ├── 198079477246@2x.png │ └── Contents.json ├── 201804651313.imageset │ ├── 201804651313.png │ ├── 201804651313@2x.png │ └── Contents.json ├── 205773517075.imageset │ ├── 205773517075.png │ ├── 205773517075@2x.png │ └── Contents.json ├── 207225320108.imageset │ ├── 207225320108.png │ ├── 207225320108@2x.png │ └── Contents.json ├── 207847215830.imageset │ ├── 207847215830.png │ ├── 207847215830@2x.png │ └── Contents.json ├── 209057893970.imageset │ ├── 209057893970.png │ ├── 209057893970@2x.png │ └── Contents.json ├── 210247356941.imageset │ ├── 210247356941.png │ ├── 210247356941@2x.png │ └── Contents.json ├── 212665677660.imageset │ ├── 212665677660.png │ ├── 212665677660@2x.png │ └── Contents.json ├── 215627419666.imageset │ ├── 215627419666.png │ ├── 215627419666@2x.png │ └── Contents.json ├── 216813987373.imageset │ ├── 216813987373.png │ ├── 216813987373@2x.png │ └── Contents.json ├── 218041566099.imageset │ ├── 218041566099.png │ ├── 218041566099@2x.png │ └── Contents.json ├── 219251317038.imageset │ ├── 219251317038.png │ ├── 219251317038@2x.png │ └── Contents.json ├── 222714396868.imageset │ ├── 222714396868.png │ ├── 222714396868@2x.png │ └── Contents.json ├── 225382419902.imageset │ ├── 225382419902.png │ ├── 225382419902@2x.png │ └── Contents.json ├── 228242993255.imageset │ ├── 228242993255.png │ ├── 228242993255@2x.png │ └── Contents.json ├── 231871561051.imageset │ ├── 231871561051.png │ ├── 231871561051@2x.png │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-60.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── Icon-Spotlight-40.png │ ├── Icon-Spotlight-40@2x.png │ ├── Icon-Spotlight-40@3x.png │ └── icon1024.jpg ├── Contents.json ├── akl.imageset │ ├── Contents.json │ ├── akl.png │ └── akl@2x.png ├── alf.imageset │ ├── Contents.json │ ├── alf.png │ └── alf@2x.png ├── alst.imageset │ ├── Contents.json │ ├── alst.png │ └── alst@2x.png ├── amm.imageset │ ├── Contents.json │ ├── amm.png │ └── amm@2x.png ├── an.imageset │ ├── Contents.json │ ├── an.png │ └── an@2x.png ├── anwy.imageset │ ├── Contents.json │ ├── anwy.png │ └── anwy@2x.png ├── ax.imageset │ ├── Contents.json │ ├── ax.png │ └── ax@2x.png ├── bb.imageset │ ├── Contents.json │ ├── bb.png │ └── bb@2x.png ├── blc.imageset │ ├── Contents.json │ ├── blc.png │ └── blc@2x.png ├── cst.imageset │ ├── Contents.json │ ├── cst.png │ └── cst@2x.png ├── cstn.imageset │ ├── Contents.json │ ├── cstn.png │ └── cstn@2x.png ├── ejt.imageset │ ├── Contents.json │ ├── ejt.png │ └── ejt@2x.png ├── ezre.imageset │ ├── Contents.json │ ├── ezre.png │ └── ezre@2x.png ├── fdtk.imageset │ ├── Contents.json │ ├── fdtk.png │ └── fdtk@2x.png ├── fljme.imageset │ ├── Contents.json │ ├── fljme.png │ └── fljme@2x.png ├── gl.imageset │ ├── Contents.json │ ├── gl.png │ └── gl@2x.png ├── gljs.imageset │ ├── Contents.json │ ├── gljs.png │ └── gljs@2x.png ├── hmdg.imageset │ ├── Contents.json │ ├── hmdg.png │ └── hmdg@2x.png ├── jks.imageset │ ├── Contents.json │ ├── jks.png │ └── jks@2x.png ├── jl.imageset │ ├── Contents.json │ ├── jl.png │ └── jl@2x.png ├── jla.imageset │ ├── Contents.json │ ├── jla.png │ └── jla@2x.png ├── jn.imageset │ ├── Contents.json │ ├── jn.png │ └── jn@2x.png ├── ke.imageset │ ├── Contents.json │ ├── ke.png │ └── ke@2x.png ├── kess.imageset │ ├── Contents.json │ ├── kess.png │ └── kess@2x.png ├── kgm.imageset │ ├── Contents.json │ ├── kgm.png │ └── kgm@2x.png ├── kjs.imageset │ ├── Contents.json │ ├── kjs.png │ └── kjs@2x.png ├── kn.imageset │ ├── Contents.json │ ├── kn.png │ └── kn@2x.png ├── kq.imageset │ ├── Contents.json │ ├── kq.png │ └── kq@2x.png ├── ksd.imageset │ ├── Contents.json │ ├── ksd.png │ └── ksd@2x.png ├── ktln.imageset │ ├── Contents.json │ ├── ktln.png │ └── ktln@2x.png ├── lms.imageset │ ├── Contents.json │ ├── lms.png │ └── lms@2x.png ├── mdks.imageset │ ├── Contents.json │ ├── mdks.png │ └── mdks@2x.png ├── mdys.imageset │ ├── Contents.json │ ├── mdys.png │ └── mdys@2x.png ├── mezh.imageset │ ├── Contents.json │ ├── mezh.png │ └── mezh@2x.png ├── mft.imageset │ ├── Contents.json │ ├── mft.png │ └── mft@2x.png ├── mgn.imageset │ ├── Contents.json │ ├── mgn.png │ └── mgn@2x.png ├── ndl.imageset │ ├── Contents.json │ ├── ndl.png │ └── ndl@2x.png ├── nn.imageset │ ├── Contents.json │ ├── nn.png │ └── nn@2x.png ├── nss.imageset │ ├── Contents.json │ ├── nss.png │ └── nss@2x.png ├── plk.imageset │ ├── Contents.json │ ├── plk.png │ └── plk@2x.png ├── ps.imageset │ ├── Contents.json │ ├── ps.png │ └── ps@2x.png ├── rz.imageset │ ├── Contents.json │ ├── rz.png │ └── rz@2x.png ├── s.imageset │ ├── Contents.json │ ├── s.png │ └── s@2x.png ├── se.imageset │ ├── Contents.json │ ├── se.png │ └── se@2x.png ├── sk.imageset │ ├── Contents.json │ ├── sk.png │ └── sk@2x.png ├── slk.imageset │ ├── Contents.json │ ├── slk.png │ └── slk@2x.png ├── tdme.imageset │ ├── Contents.json │ ├── tdme.png │ └── tdme@2x.png ├── tlk.imageset │ ├── Contents.json │ ├── tlk.png │ └── tlk@2x.png ├── tm.imageset │ ├── Contents.json │ ├── tm.png │ └── tm@2x.png ├── wde.imageset │ ├── Contents.json │ ├── wde.png │ └── wde@2x.png ├── wj.imageset │ ├── Contents.json │ ├── wj.png │ └── wj@2x.png ├── wlk.imageset │ ├── Contents.json │ ├── wlk.png │ └── wlk@2x.png ├── xjd.imageset │ ├── Contents.json │ ├── xjd.png │ └── xjd@2x.png ├── xwe.imageset │ ├── Contents.json │ ├── xwe.png │ └── xwe@2x.png ├── y.imageset │ ├── Contents.json │ ├── y.png │ └── y@2x.png ├── yfl.imageset │ ├── Contents.json │ ├── yfl.png │ └── yfl@2x.png └── zx.imageset │ ├── Contents.json │ ├── zx.png │ └── zx@2x.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── RxSwift-Bridging-Header.h ├── Tools ├── ObservableObjectMapper.swift └── ReponseObjectMapper.swift ├── UICollectionView ├── Controllers │ ├── RxCollectionViewController.swift │ └── RxCollectionViewController.xib ├── Model │ └── AnchorModel.swift ├── ViewModels │ ├── AnchorViewModel.swift │ ├── BaseViewModel.swift │ └── NetworkTools.swift └── Views │ ├── RxCollectionViewCell.swift │ └── RxCollectionViewCell.xib ├── UITableView ├── Controllers │ ├── RxTableViewController.swift │ └── RxTableViewController.xib ├── Models │ ├── HeroModel.swift │ └── heros.plist ├── ViewModels │ ├── HeroViewModel.swift │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewModel.swift │ │ ├── NetworkTools.swift │ │ └── ViewModels │ │ ├── HeroViewM │ │ └── NetworkTo └── Views │ ├── RxTableViewCell.swift │ └── RxTableViewCell.xib ├── ViewController.swift └── 登录注册 ├── Controllers ├── LoginViewController.swift ├── LoginViewController.xib ├── RegisterViewController.swift └── RegisterViewController.xib ├── Models ├── InputValidator.swift └── ResultProtocol.swift └── ViewModels └── RegisterViewModel.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/.DS_Store -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/.DS_Store -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | platform :ios, '9.0' 3 | 4 | target 'RxSwift-Table-Collection' do 5 | 6 | use_frameworks! 7 | 8 | # Swift三方库 9 | # Rx 10 | pod 'RxSwift' 11 | pod 'RxCocoa' 12 | pod 'RxDataSources' 13 | 14 | # 网络请求 15 | pod 'Moya/RxSwift' 16 | 17 | # 图片处理 18 | pod 'Kingfisher' 19 | 20 | # 数据解析 21 | pod 'ObjectMapper' 22 | 23 | 24 | 25 | # OC库 26 | # MJRefresh 27 | pod 'MJRefresh' 28 | pod 'SVProgressHUD' 29 | 30 | 31 | end 32 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Differentiator/Sources/Differentiator/AnimatableSectionModelType+ItemPath.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AnimatableSectionModelType+ItemPath.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 1/9/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Array where Element: AnimatableSectionModelType { 12 | subscript(index: ItemPath) -> Element.Item { 13 | return self[index.sectionIndex].items[index.itemIndex] 14 | } 15 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Differentiator/Sources/Differentiator/AnimatableSectionModelType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AnimatableSectionModelType.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 1/6/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public protocol AnimatableSectionModelType 12 | : SectionModelType 13 | , IdentifiableType { 14 | associatedtype Item : IdentifiableType, Equatable 15 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Differentiator/Sources/Differentiator/IdentifiableType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // IdentifiableType.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 1/6/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public protocol IdentifiableType { 12 | associatedtype Identity: Hashable 13 | 14 | var identity : Identity { get } 15 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Differentiator/Sources/Differentiator/Optional+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Optional+Extensions.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 1/8/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Optional { 12 | func unwrap() throws -> Wrapped { 13 | if let unwrapped = self { 14 | return unwrapped 15 | } 16 | else { 17 | debugFatalError("Error during unwrapping optional") 18 | throw DifferentiatorError.unwrappingOptional 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Differentiator/Sources/Differentiator/SectionModelType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SectionModelType.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 6/28/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public protocol SectionModelType { 12 | associatedtype Item 13 | 14 | var items: [Item] { get } 15 | 16 | init(original: Self, items: [Item]) 17 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Kingfisher/Sources/Box.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Box.swift 3 | // Kingfisher 4 | // 5 | // Created by WANG WEI on 2016/09/12. 6 | // Copyright © 2016年 Wei Wang. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Box { 12 | let value: T 13 | init(value: T) { 14 | self.value = value 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshFooter.h" 10 | 11 | @interface MJRefreshBackFooter : MJRefreshFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoGifFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoGifFooter : MJRefreshAutoStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *gifView; 13 | 14 | /** 设置state状态下的动画图片images 动画持续时间duration*/ 15 | - (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state; 16 | - (void)setImages:(NSArray *)images forState:(MJRefreshState)state; 17 | @end 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoNormalFooter : MJRefreshAutoStateFooter 12 | /** 菊花的样式 */ 13 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 14 | @end 15 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackGifFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackStateFooter.h" 10 | 11 | @interface MJRefreshBackGifFooter : MJRefreshBackStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *gifView; 13 | 14 | /** 设置state状态下的动画图片images 动画持续时间duration*/ 15 | - (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state; 16 | - (void)setImages:(NSArray *)images forState:(MJRefreshState)state; 17 | @end 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackStateFooter.h" 10 | 11 | @interface MJRefreshBackNormalFooter : MJRefreshBackStateFooter 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackStateFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/6/13. 6 | // Copyright © 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshBackFooter.h" 10 | 11 | @interface MJRefreshBackStateFooter : MJRefreshBackFooter 12 | /** 文字距离圈圈、箭头的距离 */ 13 | @property (assign, nonatomic) CGFloat labelLeftInset; 14 | /** 显示刷新状态的label */ 15 | @property (weak, nonatomic, readonly) UILabel *stateLabel; 16 | /** 设置state状态下的文字 */ 17 | - (void)setTitle:(NSString *)title forState:(MJRefreshState)state; 18 | 19 | /** 获取state状态下的title */ 20 | - (NSString *)titleForState:(MJRefreshState)state; 21 | @end 22 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshGifHeader.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshStateHeader.h" 10 | 11 | @interface MJRefreshGifHeader : MJRefreshStateHeader 12 | @property (weak, nonatomic, readonly) UIImageView *gifView; 13 | 14 | /** 设置state状态下的动画图片images 动画持续时间duration*/ 15 | - (void)setImages:(NSArray *)images duration:(NSTimeInterval)duration forState:(MJRefreshState)state; 16 | - (void)setImages:(NSArray *)images forState:(MJRefreshState)state; 17 | @end 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshNormalHeader.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshStateHeader.h" 10 | 11 | @interface MJRefreshNormalHeader : MJRefreshStateHeader 12 | @property (weak, nonatomic, readonly) UIImageView *arrowView; 13 | /** 菊花的样式 */ 14 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 15 | @end 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "MJRefreshHeaderIdleText" = "下拉可以刷新"; 2 | "MJRefreshHeaderPullingText" = "鬆開立即刷新"; 3 | "MJRefreshHeaderRefreshingText" = "正在刷新數據中..."; 4 | 5 | "MJRefreshAutoFooterIdleText" = "點擊或上拉加載更多"; 6 | "MJRefreshAutoFooterRefreshingText" = "正在加載更多的數據..."; 7 | "MJRefreshAutoFooterNoMoreDataText" = "已經全部加載完畢"; 8 | 9 | "MJRefreshBackFooterIdleText" = "上拉可以加載更多"; 10 | "MJRefreshBackFooterPullingText" = "鬆開立即加載更多"; 11 | "MJRefreshBackFooterRefreshingText" = "正在加載更多的數據..."; 12 | "MJRefreshBackFooterNoMoreDataText" = "已經全部加載完畢"; 13 | 14 | "MJRefreshHeaderLastTimeText" = "最後更新:"; 15 | "MJRefreshHeaderDateTodayText" = "今天"; 16 | "MJRefreshHeaderNoneLastDateText" = "無記錄"; 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- 1 | // 代码地址: https://github.com/CoderMJLee/MJRefresh 2 | // 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 3 | 4 | #import "UIScrollView+MJRefresh.h" 5 | #import "UIScrollView+MJExtension.h" 6 | #import "UIView+MJExtension.h" 7 | 8 | #import "MJRefreshNormalHeader.h" 9 | #import "MJRefreshGifHeader.h" 10 | 11 | #import "MJRefreshBackNormalFooter.h" 12 | #import "MJRefreshBackGifFooter.h" 13 | #import "MJRefreshAutoNormalFooter.h" 14 | #import "MJRefreshAutoGifFooter.h" -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSBundle+MJRefresh.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 16/6/13. 6 | // Copyright © 2016年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSBundle (MJRefresh) 12 | + (instancetype)mj_refreshBundle; 13 | + (UIImage *)mj_arrowImage; 14 | + (NSString *)mj_localizedStringForKey:(NSString *)key value:(NSString *)value; 15 | + (NSString *)mj_localizedStringForKey:(NSString *)key; 16 | @end 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Moya/Sources/Moya/Cancellable.swift: -------------------------------------------------------------------------------- 1 | /// Protocol to define the opaque type returned from a request 2 | public protocol Cancellable { 3 | var isCancelled: Bool { get } 4 | func cancel() 5 | } 6 | 7 | internal class CancellableWrapper: Cancellable { 8 | internal var innerCancellable: Cancellable = SimpleCancellable() 9 | 10 | var isCancelled: Bool { return innerCancellable.isCancelled } 11 | 12 | internal func cancel() { 13 | innerCancellable.cancel() 14 | } 15 | } 16 | 17 | internal class SimpleCancellable: Cancellable { 18 | var isCancelled = false 19 | func cancel() { 20 | isCancelled = true 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Moya/Sources/Moya/Image.swift: -------------------------------------------------------------------------------- 1 | #if os(iOS) || os(watchOS) || os(tvOS) 2 | import UIKit.UIImage 3 | public typealias ImageType = UIImage 4 | #elseif os(OSX) 5 | import AppKit.NSImage 6 | public typealias ImageType = NSImage 7 | #endif 8 | 9 | /// An alias for the SDK's image type. 10 | public typealias Image = ImageType 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DispatchQueue+Extensions.swift 3 | // Platform 4 | // 5 | // Created by Krunoslav Zaher on 10/22/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Dispatch 11 | 12 | extension DispatchQueue { 13 | private static var token: DispatchSpecificKey<()> = { 14 | let key = DispatchSpecificKey<()>() 15 | DispatchQueue.main.setSpecific(key: key, value: ()) 16 | return key 17 | }() 18 | 19 | static var isMain: Bool { 20 | return DispatchQueue.getSpecific(key: token) != nil 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/CocoaUnits/Driver/Variable+Driver.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Variable+Driver.swift 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 12/28/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | #if !RX_NO_MODULE 11 | import RxSwift 12 | #endif 13 | 14 | extension Variable { 15 | /// Converts `Variable` to `Driver` unit. 16 | /// 17 | /// - returns: Driving observable sequence. 18 | public func asDriver() -> Driver { 19 | let source = self.asObservable() 20 | .observeOn(DriverSharingStrategy.scheduler) 21 | return Driver(source) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/Foundation/Logging.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Logging.swift 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 4/3/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Simple logging settings for RxCocoa library. 12 | public struct Logging { 13 | public typealias LogURLRequest = (URLRequest) -> Bool 14 | 15 | /// Log URL requests to standard output in curl format. 16 | public static var URLRequests: LogURLRequest = { _ in 17 | #if DEBUG 18 | return true 19 | #else 20 | return false 21 | #endif 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/Runtime/_RX.m: -------------------------------------------------------------------------------- 1 | // 2 | // _RX.m 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 7/12/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #import "include/_RX.h" 10 | 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h: -------------------------------------------------------------------------------- 1 | // 2 | // RxCocoaRuntime.h 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 2/21/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "_RX.h" 11 | #import "_RXDelegateProxy.h" 12 | #import "_RXKVOObserver.h" 13 | #import "_RXObjCRuntime.h" 14 | 15 | //! Project version number for RxCocoa. 16 | FOUNDATION_EXPORT double RxCocoaVersionNumber; 17 | 18 | //! Project version string for RxCocoa. 19 | FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; 20 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- 1 | // 2 | // RxCocoa.h 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 2/21/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "_RX.h" 11 | #import "_RXDelegateProxy.h" 12 | #import "_RXKVOObserver.h" 13 | #import "_RXObjCRuntime.h" 14 | 15 | //! Project version number for RxCocoa. 16 | FOUNDATION_EXPORT double RxCocoaVersionNumber; 17 | 18 | //! Project version string for RxCocoa. 19 | FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ItemEvents.swift 3 | // RxCocoa 4 | // 5 | // Created by Krunoslav Zaher on 6/20/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | #if os(iOS) || os(tvOS) 11 | import UIKit 12 | 13 | public typealias ItemMovedEvent = (sourceIndex: IndexPath, destinationIndex: IndexPath) 14 | public typealias WillDisplayCellEvent = (cell: UITableViewCell, indexPath: IndexPath) 15 | public typealias DidEndDisplayingCellEvent = (cell: UITableViewCell, indexPath: IndexPath) 16 | #endif 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/iOS/UIAlertAction+Rx.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIAlertAction+Rx.swift 3 | // RxCocoa 4 | // 5 | // Created by Andrew Breckenridge on 5/7/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #if os(iOS) || os(tvOS) 10 | 11 | import Foundation 12 | import UIKit 13 | 14 | #if !RX_NO_MODULE 15 | import RxSwift 16 | #endif 17 | 18 | extension Reactive where Base: UIAlertAction { 19 | 20 | /// Bindable sink for `enabled` property. 21 | public var isEnabled: UIBindingObserver { 22 | return UIBindingObserver(UIElement: self.base) { alertAction, value in 23 | alertAction.isEnabled = value 24 | } 25 | } 26 | 27 | } 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/iOS/UIPageControl+Rx.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIPageControl+Rx.swift 3 | // RxCocoa 4 | // 5 | // Created by Francesco Puntillo on 14/04/2016. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #if os(iOS) || os(tvOS) 10 | 11 | import Foundation 12 | #if !RX_NO_MODULE 13 | import RxSwift 14 | #endif 15 | import UIKit 16 | 17 | extension Reactive where Base: UIPageControl { 18 | 19 | /// Bindable sink for `currentPage` property. 20 | public var currentPage: UIBindingObserver { 21 | return UIBindingObserver(UIElement: self.base) { controller, page in 22 | controller.currentPage = page 23 | } 24 | } 25 | } 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxCocoa/RxCocoa/iOS/UIProgressView+Rx.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIProgressView+Rx.swift 3 | // RxCocoa 4 | // 5 | // Created by Samuel Bae on 2/27/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | #if os(iOS) || os(tvOS) 10 | 11 | import Foundation 12 | #if !RX_NO_MODULE 13 | import RxSwift 14 | #endif 15 | import UIKit 16 | 17 | extension Reactive where Base: UIProgressView { 18 | 19 | /// Bindable sink for `progress` property 20 | public var progress: UIBindingObserver { 21 | return UIBindingObserver(UIElement: self.base) { progressView, progress in 22 | progressView.progress = progress 23 | } 24 | } 25 | 26 | } 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxDataSources/Sources/RxDataSources/FloatingPointType+IdentifiableType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FloatingPointType+IdentifiableType.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 7/4/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension FloatingPoint { 12 | typealias identity = Self 13 | 14 | public var identity: Self { 15 | return self 16 | } 17 | } 18 | 19 | extension Float : IdentifiableType { 20 | 21 | } 22 | 23 | extension Double : IdentifiableType { 24 | 25 | } 26 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxDataSources/Sources/RxDataSources/String+IdentifiableType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // String+IdentifiableType.swift 3 | // RxDataSources 4 | // 5 | // Created by Krunoslav Zaher on 7/4/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension String : IdentifiableType { 12 | public typealias Identity = String 13 | 14 | public var identity: String { 15 | return self 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DispatchQueue+Extensions.swift 3 | // Platform 4 | // 5 | // Created by Krunoslav Zaher on 10/22/16. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Dispatch 11 | 12 | extension DispatchQueue { 13 | private static var token: DispatchSpecificKey<()> = { 14 | let key = DispatchSpecificKey<()>() 15 | DispatchQueue.main.setSpecific(key: key, value: ()) 16 | return key 17 | }() 18 | 19 | static var isMain: Bool { 20 | return DispatchQueue.getSpecific(key: token) != nil 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Cancelable.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 3/12/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Represents disposable resource with state tracking. 12 | public protocol Cancelable : Disposable { 13 | /// Was resource disposed. 14 | var isDisposed: Bool { get } 15 | } 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LockOwnerType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol LockOwnerType : class, Lock { 12 | var _lock: NSRecursiveLock { get } 13 | } 14 | 15 | extension LockOwnerType { 16 | func lock() { 17 | _lock.lock() 18 | } 19 | 20 | func unlock() { 21 | _lock.unlock() 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedDisposeType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol SynchronizedDisposeType : class, Disposable, Lock { 12 | func _synchronized_dispose() 13 | } 14 | 15 | extension SynchronizedDisposeType { 16 | func synchronizedDispose() { 17 | lock(); defer { unlock() } 18 | _synchronized_dispose() 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedOnType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol SynchronizedOnType : class, ObserverType, Lock { 12 | func _synchronized_on(_ event: Event) 13 | } 14 | 15 | extension SynchronizedOnType { 16 | func synchronizedOn(_ event: Event) { 17 | lock(); defer { unlock() } 18 | _synchronized_on(event) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedSubscribeType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol SynchronizedSubscribeType : class, ObservableType, Lock { 12 | func _synchronized_subscribe(_ observer: O) -> Disposable where O.E == E 13 | } 14 | 15 | extension SynchronizedSubscribeType { 16 | func synchronizedSubscribe(_ observer: O) -> Disposable where O.E == E { 17 | lock(); defer { unlock() } 18 | return _synchronized_subscribe(observer) 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SynchronizedUnsubscribeType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol SynchronizedUnsubscribeType : class { 12 | associatedtype DisposeKey 13 | 14 | func synchronizedUnsubscribe(_ disposeKey: DisposeKey) 15 | } 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Disposable.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 2/8/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Respresents a disposable resource. 12 | public protocol Disposable { 13 | /// Dispose resource. 14 | func dispose() 15 | } 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Disposables.swift 3 | // RxSwift 4 | // 5 | // Created by Mohsen Ramezanpoor on 01/08/2016. 6 | // Copyright © 2016 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// A collection of utility methods for common disposable operations. 12 | public struct Disposables { 13 | private init() {} 14 | } 15 | 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DisposeBase.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 4/4/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Base class for all disposables. 12 | public class DisposeBase { 13 | init() { 14 | #if TRACE_RESOURCES 15 | let _ = Resources.incrementTotal() 16 | #endif 17 | } 18 | 19 | deinit { 20 | #if TRACE_RESOURCES 21 | let _ = Resources.decrementTotal() 22 | #endif 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SubscriptionDisposable.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 10/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct SubscriptionDisposable : Disposable { 12 | private let _key: T.DisposeKey 13 | private weak var _owner: T? 14 | 15 | init(owner: T, key: T.DisposeKey) { 16 | _owner = owner 17 | _key = key 18 | } 19 | 20 | func dispose() { 21 | _owner?.synchronizedUnsubscribe(_key) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- 1 | // 2 | // String+Rx.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 12/25/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension String { 12 | /// This is needed because on Linux Swift doesn't have `rangeOfString(..., options: .BackwardsSearch)` 13 | func lastIndexOf(_ character: Character) -> Index? { 14 | var index = endIndex 15 | while index > startIndex { 16 | index = self.index(before: index) 17 | if self[index] == character { 18 | return index 19 | } 20 | } 21 | 22 | return nil 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ObservableConvertibleType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 9/17/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Type that can be converted to observable sequence (`Observer`). 12 | public protocol ObservableConvertibleType { 13 | /// Type of elements in sequence. 14 | associatedtype E 15 | 16 | /// Converts `self` to `Observable` sequence. 17 | /// 18 | /// - returns: Observable sequence that represents `self`. 19 | func asObservable() -> Observable 20 | } 21 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Empty.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 8/30/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Empty : Producer { 12 | override func subscribe(_ observer: O) -> Disposable where O.E == Element { 13 | observer.on(.completed) 14 | return Disposables.create() 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Error.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 8/30/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Error : Producer { 12 | private let _error: Swift.Error 13 | 14 | init(error: Swift.Error) { 15 | _error = error 16 | } 17 | 18 | override func subscribe(_ observer: O) -> Disposable where O.E == Element { 19 | observer.on(.error(_error)) 20 | return Disposables.create() 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Never.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 8/30/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Never : Producer { 12 | override func subscribe(_ observer: O) -> Disposable where O.E == Element { 13 | return Disposables.create() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AnonymousInvocable.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 11/7/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct AnonymousInvocable : InvocableType { 12 | private let _action: () -> () 13 | 14 | init(_ action: @escaping () -> ()) { 15 | _action = action 16 | } 17 | 18 | func invoke() { 19 | _action() 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InvocableScheduledItem.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 11/7/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct InvocableScheduledItem : InvocableType { 12 | 13 | let _invocable: I 14 | let _state: I.Value 15 | 16 | init(invocable: I, state: I.Value) { 17 | _invocable = invocable 18 | _state = state 19 | } 20 | 21 | func invoke() { 22 | _invocable.invoke(_state) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InvocableType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 11/7/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol InvocableType { 12 | func invoke() 13 | } 14 | 15 | protocol InvocableWithValueType { 16 | associatedtype Value 17 | 18 | func invoke(_ value: Value) 19 | } 20 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ScheduledItemType.swift 3 | // RxSwift 4 | // 5 | // Created by Krunoslav Zaher on 11/7/15. 6 | // Copyright © 2015 Krunoslav Zaher. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | protocol ScheduledItemType 12 | : Cancelable 13 | , InvocableType { 14 | func invoke() 15 | } 16 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVIndefiniteAnimatedView.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2014-2017 Guillaume Campagna. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVIndefiniteAnimatedView : UIView 11 | 12 | @property (nonatomic, assign) CGFloat strokeThickness; 13 | @property (nonatomic, assign) CGFloat radius; 14 | @property (nonatomic, strong) UIColor *strokeColor; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressAnimatedView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVProgressAnimatedView.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2017 Tobias Tiemerding. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVProgressAnimatedView : UIView 11 | 12 | @property (nonatomic, assign) CGFloat radius; 13 | @property (nonatomic, assign) CGFloat strokeThickness; 14 | @property (nonatomic, strong) UIColor *strokeColor; 15 | @property (nonatomic, assign) CGFloat strokeEnd; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SVRadialGradientLayer.h 3 | // SVProgressHUD, https://github.com/SVProgressHUD/SVProgressHUD 4 | // 5 | // Copyright (c) 2014-2017 Tobias Tiemerding. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface SVRadialGradientLayer : CALayer 11 | 12 | @property (nonatomic) CGPoint gradientCenter; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Alamofire : NSObject 3 | @end 4 | @implementation PodsDummy_Alamofire 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double AlamofireVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- 1 | framework module Alamofire { 2 | umbrella header "Alamofire-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Alamofire 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Alamofire 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Differentiator/Differentiator-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Differentiator : NSObject 3 | @end 4 | @implementation PodsDummy_Differentiator 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Differentiator/Differentiator-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Differentiator/Differentiator-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double DifferentiatorVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char DifferentiatorVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Differentiator/Differentiator.modulemap: -------------------------------------------------------------------------------- 1 | framework module Differentiator { 2 | umbrella header "Differentiator-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Differentiator/Differentiator.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Differentiator 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Differentiator 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Kingfisher : NSObject 3 | @end 4 | @implementation PodsDummy_Kingfisher 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "Kingfisher.h" 14 | 15 | FOUNDATION_EXPORT double KingfisherVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char KingfisherVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- 1 | framework module Kingfisher { 2 | umbrella header "Kingfisher-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Kingfisher 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "CFNetwork" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Kingfisher 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | SWIFT_VERSION = 3.0 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/MJRefresh/MJRefresh.modulemap: -------------------------------------------------------------------------------- 1 | framework module MJRefresh { 2 | umbrella header "MJRefresh-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/MJRefresh 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/MJRefresh 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Moya/Moya-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Moya : NSObject 3 | @end 4 | @implementation PodsDummy_Moya 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Moya/Moya-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Moya/Moya-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double MoyaVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char MoyaVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Moya/Moya.modulemap: -------------------------------------------------------------------------------- 1 | framework module Moya { 2 | umbrella header "Moya-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/ObjectMapper/ObjectMapper-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ObjectMapper : NSObject 3 | @end 4 | @implementation PodsDummy_ObjectMapper 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/ObjectMapper/ObjectMapper-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/ObjectMapper/ObjectMapper-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ObjectMapperVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ObjectMapperVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/ObjectMapper/ObjectMapper.modulemap: -------------------------------------------------------------------------------- 1 | framework module ObjectMapper { 2 | umbrella header "ObjectMapper-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/ObjectMapper/ObjectMapper.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/ObjectMapper 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/ObjectMapper 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | SWIFT_VERSION = 3.1 12 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Pods-RxSwift-Table-Collection/Pods-RxSwift-Table-Collection-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_RxSwift_Table_Collection : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_RxSwift_Table_Collection 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Pods-RxSwift-Table-Collection/Pods-RxSwift-Table-Collection-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_RxSwift_Table_CollectionVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_RxSwift_Table_CollectionVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Pods-RxSwift-Table-Collection/Pods-RxSwift-Table-Collection.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_RxSwift_Table_Collection { 2 | umbrella header "Pods-RxSwift-Table-Collection-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Result/Result-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Result : NSObject 3 | @end 4 | @implementation PodsDummy_Result 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Result/Result-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Result/Result-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ResultVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ResultVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Result/Result.modulemap: -------------------------------------------------------------------------------- 1 | framework module Result { 2 | umbrella header "Result-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/Result/Result.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Result 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/Result 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_RxCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "RxCocoa.h" 14 | #import "RxCocoaRuntime.h" 15 | #import "_RX.h" 16 | #import "_RXDelegateProxy.h" 17 | #import "_RXKVOObserver.h" 18 | #import "_RXObjCRuntime.h" 19 | 20 | FOUNDATION_EXPORT double RxCocoaVersionNumber; 21 | FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; 22 | 23 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxCocoa { 2 | umbrella header "RxCocoa-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxCocoa/RxCocoa.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/RxCocoa 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RxSwift" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxCocoa 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxDataSources/RxDataSources-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxDataSources : NSObject 3 | @end 4 | @implementation PodsDummy_RxDataSources 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxDataSources/RxDataSources-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxDataSources/RxDataSources-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double RxDataSourcesVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char RxDataSourcesVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxDataSources/RxDataSources.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxDataSources { 2 | umbrella header "RxDataSources-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RxSwift : NSObject 3 | @end 4 | @implementation PodsDummy_RxSwift 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double RxSwiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char RxSwiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module RxSwift { 2 | umbrella header "RxSwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/RxSwift/RxSwift.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/RxSwift 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxSwift 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SVProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "SVIndefiniteAnimatedView.h" 14 | #import "SVProgressAnimatedView.h" 15 | #import "SVProgressHUD.h" 16 | #import "SVRadialGradientLayer.h" 17 | 18 | FOUNDATION_EXPORT double SVProgressHUDVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char SVProgressHUDVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/SVProgressHUD/SVProgressHUD.modulemap: -------------------------------------------------------------------------------- 1 | framework module SVProgressHUD { 2 | umbrella header "SVProgressHUD-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/Pods/Target Support Files/SVProgressHUD/SVProgressHUD.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/SVProgressHUD 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_LDFLAGS = -framework "QuartzCore" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SVProgressHUD 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/.DS_Store -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371093644361.imageset/1371093644361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371093644361.imageset/1371093644361.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371093644361.imageset/1371093644361@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371093644361.imageset/1371093644361@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371093644361.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1371093644361.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1371093644361@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371103804008.imageset/1371103804008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371103804008.imageset/1371103804008.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371103804008.imageset/1371103804008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371103804008.imageset/1371103804008@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371103804008.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1371103804008.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1371103804008@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371200551407.imageset/1371200551407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371200551407.imageset/1371200551407.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371200551407.imageset/1371200551407@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371200551407.imageset/1371200551407@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371200551407.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1371200551407.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1371200551407@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371636483394.imageset/1371636483394.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371636483394.imageset/1371636483394.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371636483394.imageset/1371636483394@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371636483394.imageset/1371636483394@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1371636483394.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1371636483394.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1371636483394@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1376619482925.imageset/1376619482925.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1376619482925.imageset/1376619482925.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1376619482925.imageset/1376619482925@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1376619482925.imageset/1376619482925@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1376619482925.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1376619482925.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1376619482925@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1381398467886.imageset/1381398467886.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1381398467886.imageset/1381398467886.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1381398467886.imageset/1381398467886@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1381398467886.imageset/1381398467886@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1381398467886.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1381398467886.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1381398467886@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1385536285032.imageset/1385536285032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1385536285032.imageset/1385536285032.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1385536285032.imageset/1385536285032@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1385536285032.imageset/1385536285032@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/1385536285032.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1385536285032.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "1385536285032@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890255948.imageset/173890255948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890255948.imageset/173890255948.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890255948.imageset/173890255948@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890255948.imageset/173890255948@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890255948.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "173890255948.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "173890255948@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890450691.imageset/173890450691.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890450691.imageset/173890450691.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890450691.imageset/173890450691@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890450691.imageset/173890450691@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/173890450691.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "173890450691.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "173890450691@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/174074057446.imageset/174074057446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/174074057446.imageset/174074057446.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/174074057446.imageset/174074057446@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/174074057446.imageset/174074057446@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/174074057446.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "174074057446.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "174074057446@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792428160.imageset/175792428160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792428160.imageset/175792428160.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792428160.imageset/175792428160@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792428160.imageset/175792428160@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792428160.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "175792428160.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "175792428160@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792432633.imageset/175792432633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792432633.imageset/175792432633.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792432633.imageset/175792432633@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792432633.imageset/175792432633@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/175792432633.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "175792432633.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "175792432633@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/176391685171.imageset/176391685171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/176391685171.imageset/176391685171.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/176391685171.imageset/176391685171@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/176391685171.imageset/176391685171@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/176391685171.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "176391685171.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "176391685171@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/178647406694.imageset/178647406694.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/178647406694.imageset/178647406694.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/178647406694.imageset/178647406694@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/178647406694.imageset/178647406694@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/178647406694.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "178647406694.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "178647406694@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/180008225874.imageset/180008225874.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/180008225874.imageset/180008225874.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/180008225874.imageset/180008225874@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/180008225874.imageset/180008225874@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/180008225874.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "180008225874.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "180008225874@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/183638769835.imageset/183638769835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/183638769835.imageset/183638769835.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/183638769835.imageset/183638769835@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/183638769835.imageset/183638769835@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/183638769835.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "183638769835.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "183638769835@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/186599920512.imageset/186599920512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/186599920512.imageset/186599920512.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/186599920512.imageset/186599920512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/186599920512.imageset/186599920512@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/186599920512.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "186599920512.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "186599920512@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/188475951613.imageset/188475951613.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/188475951613.imageset/188475951613.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/188475951613.imageset/188475951613@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/188475951613.imageset/188475951613@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/188475951613.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "188475951613.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "188475951613@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/190833295927.imageset/190833295927.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/190833295927.imageset/190833295927.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/190833295927.imageset/190833295927@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/190833295927.imageset/190833295927@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/190833295927.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "190833295927.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "190833295927@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/192131975792.imageset/192131975792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/192131975792.imageset/192131975792.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/192131975792.imageset/192131975792@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/192131975792.imageset/192131975792@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/192131975792.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "192131975792.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "192131975792@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/193333009937.imageset/193333009937.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/193333009937.imageset/193333009937.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/193333009937.imageset/193333009937@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/193333009937.imageset/193333009937@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/193333009937.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "193333009937.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "193333009937@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/195755907116.imageset/195755907116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/195755907116.imageset/195755907116.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/195755907116.imageset/195755907116@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/195755907116.imageset/195755907116@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/195755907116.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "195755907116.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "195755907116@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/196703018435.imageset/196703018435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/196703018435.imageset/196703018435.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/196703018435.imageset/196703018435@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/196703018435.imageset/196703018435@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/196703018435.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "196703018435.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "196703018435@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/197908560081.imageset/197908560081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/197908560081.imageset/197908560081.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/197908560081.imageset/197908560081@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/197908560081.imageset/197908560081@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/197908560081.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "197908560081.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "197908560081@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/198079477246.imageset/198079477246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/198079477246.imageset/198079477246.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/198079477246.imageset/198079477246@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/198079477246.imageset/198079477246@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/198079477246.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "198079477246.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "198079477246@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/201804651313.imageset/201804651313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/201804651313.imageset/201804651313.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/201804651313.imageset/201804651313@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/201804651313.imageset/201804651313@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/201804651313.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "201804651313.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "201804651313@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/205773517075.imageset/205773517075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/205773517075.imageset/205773517075.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/205773517075.imageset/205773517075@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/205773517075.imageset/205773517075@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/205773517075.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "205773517075.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "205773517075@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207225320108.imageset/207225320108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207225320108.imageset/207225320108.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207225320108.imageset/207225320108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207225320108.imageset/207225320108@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207225320108.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "207225320108.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "207225320108@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207847215830.imageset/207847215830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207847215830.imageset/207847215830.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207847215830.imageset/207847215830@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207847215830.imageset/207847215830@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/207847215830.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "207847215830.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "207847215830@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/209057893970.imageset/209057893970.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/209057893970.imageset/209057893970.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/209057893970.imageset/209057893970@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/209057893970.imageset/209057893970@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/209057893970.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "209057893970.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "209057893970@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/210247356941.imageset/210247356941.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/210247356941.imageset/210247356941.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/210247356941.imageset/210247356941@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/210247356941.imageset/210247356941@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/210247356941.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "210247356941.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "210247356941@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/212665677660.imageset/212665677660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/212665677660.imageset/212665677660.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/212665677660.imageset/212665677660@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/212665677660.imageset/212665677660@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/212665677660.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "212665677660.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "212665677660@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/215627419666.imageset/215627419666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/215627419666.imageset/215627419666.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/215627419666.imageset/215627419666@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/215627419666.imageset/215627419666@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/215627419666.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "215627419666.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "215627419666@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/216813987373.imageset/216813987373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/216813987373.imageset/216813987373.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/216813987373.imageset/216813987373@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/216813987373.imageset/216813987373@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/216813987373.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "216813987373.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "216813987373@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/218041566099.imageset/218041566099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/218041566099.imageset/218041566099.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/218041566099.imageset/218041566099@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/218041566099.imageset/218041566099@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/218041566099.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "218041566099.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "218041566099@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/219251317038.imageset/219251317038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/219251317038.imageset/219251317038.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/219251317038.imageset/219251317038@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/219251317038.imageset/219251317038@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/219251317038.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "219251317038.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "219251317038@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/222714396868.imageset/222714396868.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/222714396868.imageset/222714396868.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/222714396868.imageset/222714396868@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/222714396868.imageset/222714396868@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/222714396868.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "222714396868.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "222714396868@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/225382419902.imageset/225382419902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/225382419902.imageset/225382419902.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/225382419902.imageset/225382419902@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/225382419902.imageset/225382419902@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/225382419902.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "225382419902.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "225382419902@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/228242993255.imageset/228242993255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/228242993255.imageset/228242993255.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/228242993255.imageset/228242993255@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/228242993255.imageset/228242993255@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/228242993255.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "228242993255.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "228242993255@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/231871561051.imageset/231871561051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/231871561051.imageset/231871561051.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/231871561051.imageset/231871561051@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/231871561051.imageset/231871561051@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/231871561051.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "231871561051.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "231871561051@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-60.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/icon1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/AppIcon.appiconset/icon1024.jpg -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/akl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "akl.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "akl@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/akl.imageset/akl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/akl.imageset/akl.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/akl.imageset/akl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/akl.imageset/akl@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "alf.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "alf@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alf.imageset/alf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alf.imageset/alf.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alf.imageset/alf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alf.imageset/alf@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alst.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "alst.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "alst@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alst.imageset/alst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alst.imageset/alst.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alst.imageset/alst@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/alst.imageset/alst@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/amm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "amm.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "amm@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/amm.imageset/amm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/amm.imageset/amm.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/amm.imageset/amm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/amm.imageset/amm@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/an.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "an.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "an@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/an.imageset/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/an.imageset/an.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/an.imageset/an@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/an.imageset/an@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/anwy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "anwy.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "anwy@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/anwy.imageset/anwy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/anwy.imageset/anwy.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/anwy.imageset/anwy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/anwy.imageset/anwy@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ax.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ax.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ax@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ax.imageset/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ax.imageset/ax.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ax.imageset/ax@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ax.imageset/ax@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/bb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bb.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "bb@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/bb.imageset/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/bb.imageset/bb.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/bb.imageset/bb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/bb.imageset/bb@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/blc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "blc.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "blc@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/blc.imageset/blc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/blc.imageset/blc.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/blc.imageset/blc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/blc.imageset/blc@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cst.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cst.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "cst@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cst.imageset/cst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cst.imageset/cst.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cst.imageset/cst@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cst.imageset/cst@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cstn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cstn.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "cstn@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cstn.imageset/cstn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cstn.imageset/cstn.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cstn.imageset/cstn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/cstn.imageset/cstn@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ejt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ejt.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ejt@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ejt.imageset/ejt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ejt.imageset/ejt.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ejt.imageset/ejt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ejt.imageset/ejt@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ezre.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ezre.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ezre@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ezre.imageset/ezre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ezre.imageset/ezre.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ezre.imageset/ezre@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ezre.imageset/ezre@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fdtk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fdtk.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "fdtk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fdtk.imageset/fdtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fdtk.imageset/fdtk.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fdtk.imageset/fdtk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fdtk.imageset/fdtk@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fljme.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fljme.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "fljme@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fljme.imageset/fljme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fljme.imageset/fljme.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fljme.imageset/fljme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/fljme.imageset/fljme@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gl.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "gl@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gl.imageset/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gl.imageset/gl.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gl.imageset/gl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gl.imageset/gl@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gljs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gljs.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "gljs@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gljs.imageset/gljs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gljs.imageset/gljs.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gljs.imageset/gljs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/gljs.imageset/gljs@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/hmdg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hmdg.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "hmdg@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/hmdg.imageset/hmdg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/hmdg.imageset/hmdg.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/hmdg.imageset/hmdg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/hmdg.imageset/hmdg@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jks.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jks.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "jks@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jks.imageset/jks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jks.imageset/jks.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jks.imageset/jks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jks.imageset/jks@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jl.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "jl@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jl.imageset/jl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jl.imageset/jl.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jl.imageset/jl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jl.imageset/jl@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jla.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jla.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "jla@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jla.imageset/jla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jla.imageset/jla.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jla.imageset/jla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jla.imageset/jla@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jn.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "jn@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jn.imageset/jn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jn.imageset/jn.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jn.imageset/jn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/jn.imageset/jn@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ke.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ke.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ke@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ke.imageset/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ke.imageset/ke.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ke.imageset/ke@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ke.imageset/ke@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kess.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kess.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "kess@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kess.imageset/kess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kess.imageset/kess.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kess.imageset/kess@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kess.imageset/kess@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kgm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kgm.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "kgm@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kgm.imageset/kgm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kgm.imageset/kgm.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kgm.imageset/kgm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kgm.imageset/kgm@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kjs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kjs.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "kjs@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kjs.imageset/kjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kjs.imageset/kjs.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kjs.imageset/kjs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kjs.imageset/kjs@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kn.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "kn@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kn.imageset/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kn.imageset/kn.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kn.imageset/kn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kn.imageset/kn@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kq.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "kq@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kq.imageset/kq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kq.imageset/kq.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kq.imageset/kq@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/kq.imageset/kq@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ksd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ksd.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ksd@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ksd.imageset/ksd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ksd.imageset/ksd.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ksd.imageset/ksd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ksd.imageset/ksd@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ktln.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ktln.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ktln@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ktln.imageset/ktln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ktln.imageset/ktln.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ktln.imageset/ktln@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ktln.imageset/ktln@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/lms.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lms.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "lms@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/lms.imageset/lms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/lms.imageset/lms.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/lms.imageset/lms@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/lms.imageset/lms@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdks.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mdks.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mdks@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdks.imageset/mdks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdks.imageset/mdks.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdks.imageset/mdks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdks.imageset/mdks@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdys.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mdys.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mdys@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdys.imageset/mdys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdys.imageset/mdys.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdys.imageset/mdys@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mdys.imageset/mdys@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mezh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mezh.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mezh@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mezh.imageset/mezh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mezh.imageset/mezh.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mezh.imageset/mezh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mezh.imageset/mezh@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mft.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mft@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mft.imageset/mft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mft.imageset/mft.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mft.imageset/mft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mft.imageset/mft@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mgn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mgn.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "mgn@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mgn.imageset/mgn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mgn.imageset/mgn.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mgn.imageset/mgn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/mgn.imageset/mgn@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ndl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ndl.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ndl@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ndl.imageset/ndl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ndl.imageset/ndl.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ndl.imageset/ndl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ndl.imageset/ndl@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nn.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "nn@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nn.imageset/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nn.imageset/nn.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nn.imageset/nn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nn.imageset/nn@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nss.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nss.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "nss@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nss.imageset/nss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nss.imageset/nss.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nss.imageset/nss@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/nss.imageset/nss@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/plk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "plk.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "plk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/plk.imageset/plk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/plk.imageset/plk.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/plk.imageset/plk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/plk.imageset/plk@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ps.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ps.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ps@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ps.imageset/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ps.imageset/ps.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ps.imageset/ps@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/ps.imageset/ps@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/rz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rz.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "rz@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/rz.imageset/rz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/rz.imageset/rz.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/rz.imageset/rz@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/rz.imageset/rz@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/s.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "s.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "s@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/s.imageset/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/s.imageset/s.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/s.imageset/s@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/s.imageset/s@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/se.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "se.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "se@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/se.imageset/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/se.imageset/se.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/se.imageset/se@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/se.imageset/se@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/sk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sk.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "sk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/sk.imageset/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/sk.imageset/sk.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/sk.imageset/sk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/sk.imageset/sk@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/slk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "slk.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "slk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/slk.imageset/slk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/slk.imageset/slk.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/slk.imageset/slk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/slk.imageset/slk@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tdme.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tdme.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "tdme@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tdme.imageset/tdme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tdme.imageset/tdme.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tdme.imageset/tdme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tdme.imageset/tdme@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tlk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tlk.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "tlk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tlk.imageset/tlk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tlk.imageset/tlk.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tlk.imageset/tlk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tlk.imageset/tlk@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tm.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "tm@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tm.imageset/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tm.imageset/tm.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tm.imageset/tm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/tm.imageset/tm@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wde.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wde.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "wde@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wde.imageset/wde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wde.imageset/wde.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wde.imageset/wde@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wde.imageset/wde@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wj.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "wj@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wj.imageset/wj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wj.imageset/wj.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wj.imageset/wj@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wj.imageset/wj@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wlk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wlk.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "wlk@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wlk.imageset/wlk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wlk.imageset/wlk.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wlk.imageset/wlk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/wlk.imageset/wlk@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xjd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "xjd.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "xjd@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xjd.imageset/xjd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xjd.imageset/xjd.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xjd.imageset/xjd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xjd.imageset/xjd@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xwe.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "xwe.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "xwe@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xwe.imageset/xwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xwe.imageset/xwe.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xwe.imageset/xwe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/xwe.imageset/xwe@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/y.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "y.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "y@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/y.imageset/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/y.imageset/y.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/y.imageset/y@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/y.imageset/y@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/yfl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "yfl.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "yfl@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/yfl.imageset/yfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/yfl.imageset/yfl.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/yfl.imageset/yfl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/yfl.imageset/yfl@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/zx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zx.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "zx@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/zx.imageset/zx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/zx.imageset/zx.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/zx.imageset/zx@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderTitan/RxSwift-Table-Collection/2587552bbb85f2f72eb0786299203255873df1e1/RxSwift-Table-Collection1/RxSwift-Table-Collection/Assets.xcassets/zx.imageset/zx@2x.png -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/RxSwift-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // RxSwift-Bridging-Header.h 3 | // RxSwift-Table-Collection 4 | // 5 | // Created by iOS_Tian on 2017/9/23. 6 | // Copyright © 2017年 Quanjun. All rights reserved. 7 | // 8 | 9 | #ifndef RxSwift_Bridging_Header_h 10 | #define RxSwift_Bridging_Header_h 11 | 12 | //Libs使用cocoaPods集成 13 | #import "MJRefresh.h" 14 | #import "SVProgressHUD.h" 15 | 16 | #endif /* RxSwift_Bridging_Header_h */ 17 | -------------------------------------------------------------------------------- /RxSwift-Table-Collection1/RxSwift-Table-Collection/UITableView/Models/HeroModel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // HeroModel.swift 3 | // RxSwift-Table-Collection 4 | // 5 | // Created by iOS_Tian on 2017/9/15. 6 | // Copyright © 2017年 iOS_Tian. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | 12 | class HeroModel: NSObject { 13 | 14 | var name : String = "" 15 | var icon : String = "" 16 | var intro : String = "" 17 | 18 | init(dict : [String : Any]) { 19 | super.init() 20 | 21 | name = dict["name"] as? String ?? "" 22 | icon = dict["icon"] as? String ?? "" 23 | intro = dict["intro"] as? String ?? "" 24 | 25 | } 26 | 27 | } 28 | --------------------------------------------------------------------------------