├── .DS_Store ├── API ├── weibo_0.json ├── weibo_1.json ├── weibo_2.json ├── weibo_3.json ├── weibo_4.json ├── weibo_5.json ├── weibo_6.json └── weibo_7.json ├── Demo_checkCell.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── lichunbo.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── lichunbo.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Demo_checkCell.xcscheme │ └── xcschememanagement.plist ├── Demo_checkCell ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── 22.imageset │ │ ├── 22.jpg │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── avatorImage.imageset │ │ ├── Contents.json │ │ └── avatorImage.jpg │ ├── background.imageset │ │ ├── Contents.json │ │ └── background.jpg │ ├── c.imageset │ │ ├── Contents.json │ │ └── c@2x.png │ ├── comment.imageset │ │ ├── Contents.json │ │ └── comment@2x.png │ ├── likewhite.imageset │ │ ├── Contents.json │ │ └── likewhite@2x.png │ └── menu.imageset │ │ ├── Contents.json │ │ └── [menu].png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CommentView.swift ├── Comment_Like_View.swift ├── Frameworks │ ├── CFSnapKit │ │ ├── CFSnapKit.swift │ │ └── Source │ │ │ ├── Constraint.swift │ │ │ ├── ConstraintAttributes.swift │ │ │ ├── ConstraintDescription.swift │ │ │ ├── ConstraintItem.swift │ │ │ ├── ConstraintMaker.swift │ │ │ ├── ConstraintRelation.swift │ │ │ ├── Debugging.swift │ │ │ ├── EdgeInsets.swift │ │ │ ├── LayoutConstraint.swift │ │ │ ├── SnapKit.h │ │ │ ├── SnapKit.swift │ │ │ ├── SourceLocation.swift │ │ │ ├── View+SnapKit.swift │ │ │ └── ViewController+SnapKit.swift │ ├── Haneke │ │ ├── CGSize+Swift.swift │ │ ├── Cache.swift │ │ ├── CryptoSwiftMD5.swift │ │ ├── Data.swift │ │ ├── DiskCache.swift │ │ ├── DiskFetcher.swift │ │ ├── Fetch.swift │ │ ├── Fetcher.swift │ │ ├── Format.swift │ │ ├── Haneke.h │ │ ├── Haneke.swift │ │ ├── Log.swift │ │ ├── NSFileManager+Haneke.swift │ │ ├── NSHTTPURLResponse+Haneke.swift │ │ ├── NSURLResponse+Haneke.swift │ │ ├── NetworkFetcher.swift │ │ ├── String+Haneke.swift │ │ ├── UIButton+Haneke.swift │ │ ├── UIImage+Haneke.swift │ │ ├── UIImageView+Haneke.swift │ │ └── UIView+Haneke.swift │ └── NVActivityIndicatorView │ │ ├── Animations │ │ ├── NVActivityIndicatorAnimationBallBeat.swift │ │ ├── NVActivityIndicatorAnimationBallClipRotate.swift │ │ ├── NVActivityIndicatorAnimationBallClipRotateMultiple.swift │ │ ├── NVActivityIndicatorAnimationBallClipRotatePulse.swift │ │ ├── NVActivityIndicatorAnimationBallGridBeat.swift │ │ ├── NVActivityIndicatorAnimationBallGridPulse.swift │ │ ├── NVActivityIndicatorAnimationBallPulse.swift │ │ ├── NVActivityIndicatorAnimationBallPulseRise.swift │ │ ├── NVActivityIndicatorAnimationBallPulseSync.swift │ │ ├── NVActivityIndicatorAnimationBallRotate.swift │ │ ├── NVActivityIndicatorAnimationBallRotateChase.swift │ │ ├── NVActivityIndicatorAnimationBallScale.swift │ │ ├── NVActivityIndicatorAnimationBallScaleMultiple.swift │ │ ├── NVActivityIndicatorAnimationBallScaleRipple.swift │ │ ├── NVActivityIndicatorAnimationBallScaleRippleMultiple.swift │ │ ├── NVActivityIndicatorAnimationBallSpinFadeLoader.swift │ │ ├── NVActivityIndicatorAnimationBallTrianglePath.swift │ │ ├── NVActivityIndicatorAnimationBallZigZag.swift │ │ ├── NVActivityIndicatorAnimationBallZigZagDeflect.swift │ │ ├── NVActivityIndicatorAnimationBlank.swift │ │ ├── NVActivityIndicatorAnimationCubeTransition.swift │ │ ├── NVActivityIndicatorAnimationLineScale.swift │ │ ├── NVActivityIndicatorAnimationLineScaleParty.swift │ │ ├── NVActivityIndicatorAnimationLineScalePulseOut.swift │ │ ├── NVActivityIndicatorAnimationLineScalePulseOutRapid.swift │ │ ├── NVActivityIndicatorAnimationLineSpinFadeLoader.swift │ │ ├── NVActivityIndicatorAnimationPacman.swift │ │ ├── NVActivityIndicatorAnimationSemiCircleSpin.swift │ │ ├── NVActivityIndicatorAnimationSquareSpin.swift │ │ └── NVActivityIndicatorAnimationTriangleSkewSpin.swift │ │ ├── NVActivityIndicatorAnimationDelegate.swift │ │ ├── NVActivityIndicatorShape.swift │ │ ├── NVActivityIndicatorView.h │ │ └── NVActivityIndicatorView.swift ├── Info.plist ├── Menu.swift ├── PhotoBrowser │ ├── .DS_Store │ ├── Common │ │ ├── PhotoBrowser+Common.swift │ │ └── pic.bundle │ │ │ ├── cancel@2x.png │ │ │ ├── cancel@3x.png │ │ │ ├── save@2x.png │ │ │ └── save@3x.png │ ├── Controller │ │ ├── PhotoBrowser+CollectionViewExtend.swift │ │ ├── PhotoBrowser+HUD.swift │ │ ├── PhotoBrowser+Indicator.swift │ │ ├── PhotoBrowser+Main.swift │ │ ├── PhotoBrowser+PBType.swift │ │ └── PhotoBrowser+ZoomAnim.swift │ ├── DisplayView.swift │ ├── Layout │ │ └── Layout.swift │ ├── Model │ │ └── PhotoBrowser+Model.swift │ ├── PhotoBrowser.swift │ └── View │ │ ├── CollectionView.swift │ │ ├── ItemCell.swift │ │ ├── ItemCell.xib │ │ └── ShowImageView.swift ├── TableViewCell.swift ├── ViewController.swift ├── data.swift ├── extension.swift └── pingLunFun.swift ├── Demo_checkCellTests ├── Demo_checkCellTests.swift └── Info.plist ├── Demo_checkCellUITests ├── Demo_checkCellUITests.swift └── Info.plist └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/.DS_Store -------------------------------------------------------------------------------- /API/weibo_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_0.json -------------------------------------------------------------------------------- /API/weibo_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_1.json -------------------------------------------------------------------------------- /API/weibo_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_2.json -------------------------------------------------------------------------------- /API/weibo_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_3.json -------------------------------------------------------------------------------- /API/weibo_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_4.json -------------------------------------------------------------------------------- /API/weibo_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_5.json -------------------------------------------------------------------------------- /API/weibo_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_6.json -------------------------------------------------------------------------------- /API/weibo_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/API/weibo_7.json -------------------------------------------------------------------------------- /Demo_checkCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo_checkCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo_checkCell.xcodeproj/project.xcworkspace/xcuserdata/lichunbo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell.xcodeproj/project.xcworkspace/xcuserdata/lichunbo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo_checkCell.xcodeproj/xcuserdata/lichunbo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell.xcodeproj/xcuserdata/lichunbo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Demo_checkCell.xcodeproj/xcuserdata/lichunbo.xcuserdatad/xcschemes/Demo_checkCell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell.xcodeproj/xcuserdata/lichunbo.xcuserdatad/xcschemes/Demo_checkCell.xcscheme -------------------------------------------------------------------------------- /Demo_checkCell.xcodeproj/xcuserdata/lichunbo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell.xcodeproj/xcuserdata/lichunbo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo_checkCell/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/.DS_Store -------------------------------------------------------------------------------- /Demo_checkCell/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/AppDelegate.swift -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/22.imageset/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/22.imageset/22.jpg -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/22.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/avatorImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/avatorImage.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/avatorImage.imageset/avatorImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/avatorImage.imageset/avatorImage.jpg -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/background.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/background.imageset/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/background.imageset/background.jpg -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/c.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/c.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/c.imageset/c@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/c.imageset/c@2x.png -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/comment.imageset/comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/comment.imageset/comment@2x.png -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/likewhite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/likewhite.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/likewhite.imageset/likewhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/likewhite.imageset/likewhite@2x.png -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/menu.imageset/Contents.json -------------------------------------------------------------------------------- /Demo_checkCell/Assets.xcassets/menu.imageset/[menu].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Assets.xcassets/menu.imageset/[menu].png -------------------------------------------------------------------------------- /Demo_checkCell/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo_checkCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo_checkCell/CommentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/CommentView.swift -------------------------------------------------------------------------------- /Demo_checkCell/Comment_Like_View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Comment_Like_View.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/CFSnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/CFSnapKit.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/EdgeInsets.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/SnapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/SnapKit.h -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/SnapKit.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/SourceLocation.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/View+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/View+SnapKit.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/CFSnapKit/Source/ViewController+SnapKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/CFSnapKit/Source/ViewController+SnapKit.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/CGSize+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/CGSize+Swift.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Cache.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/CryptoSwiftMD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/CryptoSwiftMD5.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Data.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/DiskCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/DiskCache.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/DiskFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/DiskFetcher.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Fetch.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Fetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Fetcher.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Format.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Haneke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Haneke.h -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/Log.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/NSFileManager+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/NSFileManager+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/NSHTTPURLResponse+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/NSHTTPURLResponse+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/NSURLResponse+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/NSURLResponse+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/NetworkFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/NetworkFetcher.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/String+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/String+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/UIButton+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/UIButton+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/UIImage+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/UIImage+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/UIImageView+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/UIImageView+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/Haneke/UIView+Haneke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/Haneke/UIView+Haneke.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallBeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallBeat.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallClipRotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallClipRotate.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallClipRotateMultiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallClipRotateMultiple.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallClipRotatePulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallClipRotatePulse.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallGridBeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallGridBeat.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallGridPulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallGridPulse.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallPulse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallPulse.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallPulseRise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallPulseRise.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallPulseSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallPulseSync.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallRotate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallRotate.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallRotateChase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallRotateChase.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScale.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScaleMultiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScaleMultiple.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScaleRipple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScaleRipple.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScaleRippleMultiple.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallScaleRippleMultiple.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallSpinFadeLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallSpinFadeLoader.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallTrianglePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallTrianglePath.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallZigZag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallZigZag.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallZigZagDeflect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBallZigZagDeflect.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBlank.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationBlank.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationCubeTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationCubeTransition.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScale.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScaleParty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScaleParty.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScalePulseOut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScalePulseOut.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScalePulseOutRapid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineScalePulseOutRapid.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineSpinFadeLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationLineSpinFadeLoader.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationPacman.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationPacman.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationSemiCircleSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationSemiCircleSpin.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationSquareSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationSquareSpin.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationTriangleSkewSpin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/Animations/NVActivityIndicatorAnimationTriangleSkewSpin.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorAnimationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorAnimationDelegate.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorShape.swift -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorView.h -------------------------------------------------------------------------------- /Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Frameworks/NVActivityIndicatorView/NVActivityIndicatorView.swift -------------------------------------------------------------------------------- /Demo_checkCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Info.plist -------------------------------------------------------------------------------- /Demo_checkCell/Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/Menu.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/.DS_Store -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Common/PhotoBrowser+Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Common/PhotoBrowser+Common.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Common/pic.bundle/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Common/pic.bundle/cancel@2x.png -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Common/pic.bundle/cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Common/pic.bundle/cancel@3x.png -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Common/pic.bundle/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Common/pic.bundle/save@2x.png -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Common/pic.bundle/save@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Common/pic.bundle/save@3x.png -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+CollectionViewExtend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+CollectionViewExtend.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+HUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+HUD.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+Indicator.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+Main.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+PBType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+PBType.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+ZoomAnim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Controller/PhotoBrowser+ZoomAnim.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/DisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/DisplayView.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Layout/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Layout/Layout.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/Model/PhotoBrowser+Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/Model/PhotoBrowser+Model.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/PhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/PhotoBrowser.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/View/CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/View/CollectionView.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/View/ItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/View/ItemCell.swift -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/View/ItemCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/View/ItemCell.xib -------------------------------------------------------------------------------- /Demo_checkCell/PhotoBrowser/View/ShowImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/PhotoBrowser/View/ShowImageView.swift -------------------------------------------------------------------------------- /Demo_checkCell/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/TableViewCell.swift -------------------------------------------------------------------------------- /Demo_checkCell/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/ViewController.swift -------------------------------------------------------------------------------- /Demo_checkCell/data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/data.swift -------------------------------------------------------------------------------- /Demo_checkCell/extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/extension.swift -------------------------------------------------------------------------------- /Demo_checkCell/pingLunFun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCell/pingLunFun.swift -------------------------------------------------------------------------------- /Demo_checkCellTests/Demo_checkCellTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCellTests/Demo_checkCellTests.swift -------------------------------------------------------------------------------- /Demo_checkCellTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCellTests/Info.plist -------------------------------------------------------------------------------- /Demo_checkCellUITests/Demo_checkCellUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCellUITests/Demo_checkCellUITests.swift -------------------------------------------------------------------------------- /Demo_checkCellUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCBbest/WeChatDemo/HEAD/Demo_checkCellUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WeChatDemo 2 | ##版本Xcode7.3 Swift 2.3.1 3 | Swift版仿微信朋友圈 4 | 项目预览地址:http://www.jianshu.com/p/0e3267f18ddf 5 | --------------------------------------------------------------------------------