├── 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 ├── AlamofireImage │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFIError.swift │ │ ├── Image.swift │ │ ├── ImageCache.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageFilter.swift │ │ ├── Request+AlamofireImage.swift │ │ ├── UIButton+AlamofireImage.swift │ │ ├── UIImage+AlamofireImage.swift │ │ └── UIImageView+AlamofireImage.swift ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnimatedImageView.swift │ │ ├── Box.swift │ │ ├── CacheSerializer.swift │ │ ├── Filter.swift │ │ ├── FormatIndicatedCacheSerializer.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 │ │ ├── Placeholder.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 ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mengxuanlong.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── AlamofireImage.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── MJRefresh.xcscheme │ │ ├── Pods-工作总结.xcscheme │ │ ├── SnapKit.xcscheme │ │ └── xcschememanagement.plist ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ └── UILayoutSupport+Extensions.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── AlamofireImage │ ├── AlamofireImage-dummy.m │ ├── AlamofireImage-prefix.pch │ ├── AlamofireImage-umbrella.h │ ├── AlamofireImage.modulemap │ ├── AlamofireImage.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 │ ├── Pods-工作总结 │ ├── Info.plist │ ├── Pods-工作总结-acknowledgements.markdown │ ├── Pods-工作总结-acknowledgements.plist │ ├── Pods-工作总结-dummy.m │ ├── Pods-工作总结-frameworks.sh │ ├── Pods-工作总结-resources.sh │ ├── Pods-工作总结-umbrella.h │ ├── Pods-工作总结.debug.xcconfig │ ├── Pods-工作总结.modulemap │ └── Pods-工作总结.release.xcconfig │ └── SnapKit │ ├── Info.plist │ ├── SnapKit-dummy.m │ ├── SnapKit-prefix.pch │ ├── SnapKit-umbrella.h │ ├── SnapKit.modulemap │ └── SnapKit.xcconfig ├── 每日优鲜.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── mengxuanlong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── mengxuanlong.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── 每日优鲜 ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── sanjiao.imageset │ ├── Contents.json │ └── sanjiao.png ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── BigGroupsModel.swift ├── FriendsModel.swift ├── GroupHeaderView.swift ├── Info.plist ├── JobSummaryController.swift ├── TopTableViewCell.swift └── demo.json /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/LICENSE -------------------------------------------------------------------------------- /Pods/AlamofireImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/README.md -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/AFIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/AFIError.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/Image.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/ImageCache.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/ImageFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/ImageFilter.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/Request+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/Request+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/AnimatedImageView.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/CacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ImageTransition.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Indicator.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/KingfisherManager.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Placeholder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/RequestModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/Resource.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/ThreadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/ThreadHelper.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/AlamofireImage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/AlamofireImage.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/MJRefresh.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/MJRefresh.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/Pods-工作总结.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/Pods-工作总结.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/SnapKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/SnapKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintConfig.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintInsets.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintPriority.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintView.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AlamofireImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/AlamofireImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Kingfisher/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/MJRefresh/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/MJRefresh/MJRefresh.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-工作总结/Pods-工作总结.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/Pods-工作总结/Pods-工作总结.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/SnapKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/Pods/Target Support Files/SnapKit/SnapKit.xcconfig -------------------------------------------------------------------------------- /每日优鲜.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /每日优鲜.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /每日优鲜.xcodeproj/project.xcworkspace/xcuserdata/mengxuanlong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜.xcodeproj/project.xcworkspace/xcuserdata/mengxuanlong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /每日优鲜.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /每日优鲜.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜.xcodeproj/xcuserdata/mengxuanlong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /每日优鲜/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/AppDelegate.swift -------------------------------------------------------------------------------- /每日优鲜/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /每日优鲜/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /每日优鲜/Assets.xcassets/sanjiao.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Assets.xcassets/sanjiao.imageset/Contents.json -------------------------------------------------------------------------------- /每日优鲜/Assets.xcassets/sanjiao.imageset/sanjiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Assets.xcassets/sanjiao.imageset/sanjiao.png -------------------------------------------------------------------------------- /每日优鲜/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /每日优鲜/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /每日优鲜/BigGroupsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/BigGroupsModel.swift -------------------------------------------------------------------------------- /每日优鲜/FriendsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/FriendsModel.swift -------------------------------------------------------------------------------- /每日优鲜/GroupHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/GroupHeaderView.swift -------------------------------------------------------------------------------- /每日优鲜/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/Info.plist -------------------------------------------------------------------------------- /每日优鲜/JobSummaryController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/JobSummaryController.swift -------------------------------------------------------------------------------- /每日优鲜/TopTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/TopTableViewCell.swift -------------------------------------------------------------------------------- /每日优鲜/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/China-meng/swift4-TableViewAnimation/HEAD/每日优鲜/demo.json --------------------------------------------------------------------------------