├── .gitignore ├── Podfile ├── README.md ├── bizhi.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── limboy.xcuserdatad │ └── xcschemes │ ├── bizhi.xcscheme │ └── xcschememanagement.plist ├── bizhi.xcworkspace └── contents.xcworkspacedata ├── bizhi ├── BZAPIManager.h ├── BZAPIManager.m ├── BZAppDelegate.h ├── BZAppDelegate.m ├── BZDetailModule.h ├── BZDetailModule.m ├── BZDetailViewCell.h ├── BZDetailViewCell.m ├── BZDetailViewController.h ├── BZDetailViewController.m ├── BZPinModel.h ├── BZPinModel.m ├── BZSettingsModule.h ├── BZSettingsModule.m ├── BZSettingsViewController.h ├── BZSettingsViewController.m ├── BZTagModel.h ├── BZTagModel.m ├── BZTagsModule.h ├── BZTagsModule.m ├── BZTagsViewController.h ├── BZTagsViewController.m ├── BZWaterfallModule.h ├── BZWaterfallModule.m ├── BZWaterfallViewCell.h ├── BZWaterfallViewCell.m ├── BZWaterfallViewCellModel.h ├── BZWaterfallViewCellModel.m ├── BZWaterfallViewController.h ├── BZWaterfallViewController.m ├── BZWaterfallViewModel.h ├── BZWaterfallViewModel.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── icon.png │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ └── launch.png │ ├── button_download.imageset │ │ ├── Contents.json │ │ └── button_download@2x.png │ ├── button_share.imageset │ │ ├── Contents.json │ │ └── button_share@2x.png │ ├── categories.imageset │ │ ├── Contents.json │ │ └── categories@2x.png │ ├── latest.imageset │ │ ├── Contents.json │ │ └── latest@2x.png │ ├── settings.imageset │ │ ├── Contents.json │ │ └── settings@2x.png │ └── trash.imageset │ │ ├── Contents.json │ │ └── trash@2x.png ├── Protocols.h ├── UICollectionView+FixRefreshControlJump.h ├── UICollectionView+FixRefreshControlJump.m ├── UIColor+LightRandom.h ├── UIColor+LightRandom.m ├── UIView+Layout.h ├── UIView+Layout.m ├── UIView+SuperView.h ├── UIView+SuperView.m ├── UtilsMacro.h ├── bizhi-Info.plist ├── bizhi-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m ├── bizhiTests ├── bizhiTests-Info.plist ├── bizhiTests.m └── en.lproj │ └── InfoPlist.strings └── screenshot.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/README.md -------------------------------------------------------------------------------- /bizhi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /bizhi.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /bizhi.xcodeproj/xcuserdata/limboy.xcuserdatad/xcschemes/bizhi.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi.xcodeproj/xcuserdata/limboy.xcuserdatad/xcschemes/bizhi.xcscheme -------------------------------------------------------------------------------- /bizhi.xcodeproj/xcuserdata/limboy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi.xcodeproj/xcuserdata/limboy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /bizhi.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /bizhi/BZAPIManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZAPIManager.h -------------------------------------------------------------------------------- /bizhi/BZAPIManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZAPIManager.m -------------------------------------------------------------------------------- /bizhi/BZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZAppDelegate.h -------------------------------------------------------------------------------- /bizhi/BZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZAppDelegate.m -------------------------------------------------------------------------------- /bizhi/BZDetailModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZDetailModule.h -------------------------------------------------------------------------------- /bizhi/BZDetailModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZDetailModule.m -------------------------------------------------------------------------------- /bizhi/BZDetailViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZDetailViewCell.h -------------------------------------------------------------------------------- /bizhi/BZDetailViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZDetailViewCell.m -------------------------------------------------------------------------------- /bizhi/BZDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZDetailViewController.h -------------------------------------------------------------------------------- /bizhi/BZDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZDetailViewController.m -------------------------------------------------------------------------------- /bizhi/BZPinModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZPinModel.h -------------------------------------------------------------------------------- /bizhi/BZPinModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZPinModel.m -------------------------------------------------------------------------------- /bizhi/BZSettingsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZSettingsModule.h -------------------------------------------------------------------------------- /bizhi/BZSettingsModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZSettingsModule.m -------------------------------------------------------------------------------- /bizhi/BZSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZSettingsViewController.h -------------------------------------------------------------------------------- /bizhi/BZSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZSettingsViewController.m -------------------------------------------------------------------------------- /bizhi/BZTagModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZTagModel.h -------------------------------------------------------------------------------- /bizhi/BZTagModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZTagModel.m -------------------------------------------------------------------------------- /bizhi/BZTagsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZTagsModule.h -------------------------------------------------------------------------------- /bizhi/BZTagsModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZTagsModule.m -------------------------------------------------------------------------------- /bizhi/BZTagsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZTagsViewController.h -------------------------------------------------------------------------------- /bizhi/BZTagsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZTagsViewController.m -------------------------------------------------------------------------------- /bizhi/BZWaterfallModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallModule.h -------------------------------------------------------------------------------- /bizhi/BZWaterfallModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallModule.m -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewCell.h -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewCell.m -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewCellModel.h -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewCellModel.m -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewController.h -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewController.m -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewModel.h -------------------------------------------------------------------------------- /bizhi/BZWaterfallViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/BZWaterfallViewModel.m -------------------------------------------------------------------------------- /bizhi/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/LaunchImage.launchimage/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/LaunchImage.launchimage/launch.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/button_download.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/button_download.imageset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/button_download.imageset/button_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/button_download.imageset/button_download@2x.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/button_share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/button_share.imageset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/button_share.imageset/button_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/button_share.imageset/button_share@2x.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/categories.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/categories.imageset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/categories.imageset/categories@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/categories.imageset/categories@2x.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/latest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/latest.imageset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/latest.imageset/latest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/latest.imageset/latest@2x.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/settings.imageset/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/settings.imageset/settings@2x.png -------------------------------------------------------------------------------- /bizhi/Images.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/trash.imageset/Contents.json -------------------------------------------------------------------------------- /bizhi/Images.xcassets/trash.imageset/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Images.xcassets/trash.imageset/trash@2x.png -------------------------------------------------------------------------------- /bizhi/Protocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/Protocols.h -------------------------------------------------------------------------------- /bizhi/UICollectionView+FixRefreshControlJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UICollectionView+FixRefreshControlJump.h -------------------------------------------------------------------------------- /bizhi/UICollectionView+FixRefreshControlJump.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UICollectionView+FixRefreshControlJump.m -------------------------------------------------------------------------------- /bizhi/UIColor+LightRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UIColor+LightRandom.h -------------------------------------------------------------------------------- /bizhi/UIColor+LightRandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UIColor+LightRandom.m -------------------------------------------------------------------------------- /bizhi/UIView+Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UIView+Layout.h -------------------------------------------------------------------------------- /bizhi/UIView+Layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UIView+Layout.m -------------------------------------------------------------------------------- /bizhi/UIView+SuperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UIView+SuperView.h -------------------------------------------------------------------------------- /bizhi/UIView+SuperView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UIView+SuperView.m -------------------------------------------------------------------------------- /bizhi/UtilsMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/UtilsMacro.h -------------------------------------------------------------------------------- /bizhi/bizhi-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/bizhi-Info.plist -------------------------------------------------------------------------------- /bizhi/bizhi-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/bizhi-Prefix.pch -------------------------------------------------------------------------------- /bizhi/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /bizhi/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhi/main.m -------------------------------------------------------------------------------- /bizhiTests/bizhiTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhiTests/bizhiTests-Info.plist -------------------------------------------------------------------------------- /bizhiTests/bizhiTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/bizhiTests/bizhiTests.m -------------------------------------------------------------------------------- /bizhiTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limboy/bizhi/HEAD/screenshot.jpg --------------------------------------------------------------------------------