├── .gitignore ├── Podfile ├── README.md ├── VZ.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── VZ.xcworkspace └── contents.xcworkspacedata └── VZ ├── Default-568h@2x.png ├── Default@2x.png ├── Dots@2x.png ├── Icon-120@2x.png ├── Icon.png ├── Icon@2x.png ├── VZ-Info.plist ├── VZ-Prefix.pch ├── VZ.entitlements ├── VZAppDelegate.h ├── VZAppDelegate.m ├── VZCommentCell.h ├── VZCommentCell.m ├── VZFeedbackC.h ├── VZFeedbackC.m ├── VZM.h ├── VZM.m ├── VZMenuC.h ├── VZMenuC.m ├── VZNavC.h ├── VZNavC.m ├── VZNavView.h ├── VZNavView.m ├── VZNearC.h ├── VZNearC.m ├── VZPost.h ├── VZPost.m ├── VZPostActionC.h ├── VZPostActionC.m ├── VZPostCell.h ├── VZPostCell.m ├── VZPostListC.h ├── VZPostListC.m ├── VZPostViewC.h ├── VZPostViewC.m ├── VZProgressView.h ├── VZProgressView.m ├── VZSearchBar.h ├── VZSearchBar.m ├── VZSettingsC.h ├── VZSettingsC.m ├── VZStacView.h ├── VZStacView.m ├── VZStatusListC.h ├── VZStatusListC.m ├── VZWebViewC.h ├── VZWebViewC.m ├── all@2x.png ├── arrow@2x.png ├── bg2@2x.png ├── bg@2x.png ├── chatBg2@2x.png ├── chatBg@2x.png ├── close@2x.png ├── deal.png ├── deal@2x.png ├── en.lproj └── InfoPlist.strings ├── fav.png ├── fav@2x.png ├── geo@2x.png ├── head@2x.png ├── home.png ├── home@2x.png ├── iPhone.storyboard ├── main.m ├── map.png ├── map@2x.png ├── navBg@2x.png ├── near@2x.png ├── pics@2x.png ├── req@2x.png ├── search.png ├── search@2x.png ├── searchClose.png ├── searchClose@2x.png ├── settings@2x.png ├── spam.png ├── spam@2x.png ├── trash.png ├── trash@2x.png └── zh-Hans.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/README.md -------------------------------------------------------------------------------- /VZ.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VZ.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VZ.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VZ/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/Default-568h@2x.png -------------------------------------------------------------------------------- /VZ/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/Default@2x.png -------------------------------------------------------------------------------- /VZ/Dots@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/Dots@2x.png -------------------------------------------------------------------------------- /VZ/Icon-120@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/Icon-120@2x.png -------------------------------------------------------------------------------- /VZ/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/Icon.png -------------------------------------------------------------------------------- /VZ/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/Icon@2x.png -------------------------------------------------------------------------------- /VZ/VZ-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZ-Info.plist -------------------------------------------------------------------------------- /VZ/VZ-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZ-Prefix.pch -------------------------------------------------------------------------------- /VZ/VZ.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZ.entitlements -------------------------------------------------------------------------------- /VZ/VZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZAppDelegate.h -------------------------------------------------------------------------------- /VZ/VZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZAppDelegate.m -------------------------------------------------------------------------------- /VZ/VZCommentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZCommentCell.h -------------------------------------------------------------------------------- /VZ/VZCommentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZCommentCell.m -------------------------------------------------------------------------------- /VZ/VZFeedbackC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZFeedbackC.h -------------------------------------------------------------------------------- /VZ/VZFeedbackC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZFeedbackC.m -------------------------------------------------------------------------------- /VZ/VZM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZM.h -------------------------------------------------------------------------------- /VZ/VZM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZM.m -------------------------------------------------------------------------------- /VZ/VZMenuC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZMenuC.h -------------------------------------------------------------------------------- /VZ/VZMenuC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZMenuC.m -------------------------------------------------------------------------------- /VZ/VZNavC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZNavC.h -------------------------------------------------------------------------------- /VZ/VZNavC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZNavC.m -------------------------------------------------------------------------------- /VZ/VZNavView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZNavView.h -------------------------------------------------------------------------------- /VZ/VZNavView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZNavView.m -------------------------------------------------------------------------------- /VZ/VZNearC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZNearC.h -------------------------------------------------------------------------------- /VZ/VZNearC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZNearC.m -------------------------------------------------------------------------------- /VZ/VZPost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPost.h -------------------------------------------------------------------------------- /VZ/VZPost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPost.m -------------------------------------------------------------------------------- /VZ/VZPostActionC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostActionC.h -------------------------------------------------------------------------------- /VZ/VZPostActionC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostActionC.m -------------------------------------------------------------------------------- /VZ/VZPostCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostCell.h -------------------------------------------------------------------------------- /VZ/VZPostCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostCell.m -------------------------------------------------------------------------------- /VZ/VZPostListC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostListC.h -------------------------------------------------------------------------------- /VZ/VZPostListC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostListC.m -------------------------------------------------------------------------------- /VZ/VZPostViewC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostViewC.h -------------------------------------------------------------------------------- /VZ/VZPostViewC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZPostViewC.m -------------------------------------------------------------------------------- /VZ/VZProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZProgressView.h -------------------------------------------------------------------------------- /VZ/VZProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZProgressView.m -------------------------------------------------------------------------------- /VZ/VZSearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZSearchBar.h -------------------------------------------------------------------------------- /VZ/VZSearchBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZSearchBar.m -------------------------------------------------------------------------------- /VZ/VZSettingsC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZSettingsC.h -------------------------------------------------------------------------------- /VZ/VZSettingsC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZSettingsC.m -------------------------------------------------------------------------------- /VZ/VZStacView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZStacView.h -------------------------------------------------------------------------------- /VZ/VZStacView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZStacView.m -------------------------------------------------------------------------------- /VZ/VZStatusListC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZStatusListC.h -------------------------------------------------------------------------------- /VZ/VZStatusListC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZStatusListC.m -------------------------------------------------------------------------------- /VZ/VZWebViewC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZWebViewC.h -------------------------------------------------------------------------------- /VZ/VZWebViewC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/VZWebViewC.m -------------------------------------------------------------------------------- /VZ/all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/all@2x.png -------------------------------------------------------------------------------- /VZ/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/arrow@2x.png -------------------------------------------------------------------------------- /VZ/bg2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/bg2@2x.png -------------------------------------------------------------------------------- /VZ/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/bg@2x.png -------------------------------------------------------------------------------- /VZ/chatBg2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/chatBg2@2x.png -------------------------------------------------------------------------------- /VZ/chatBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/chatBg@2x.png -------------------------------------------------------------------------------- /VZ/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/close@2x.png -------------------------------------------------------------------------------- /VZ/deal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/deal.png -------------------------------------------------------------------------------- /VZ/deal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/deal@2x.png -------------------------------------------------------------------------------- /VZ/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VZ/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/fav.png -------------------------------------------------------------------------------- /VZ/fav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/fav@2x.png -------------------------------------------------------------------------------- /VZ/geo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/geo@2x.png -------------------------------------------------------------------------------- /VZ/head@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/head@2x.png -------------------------------------------------------------------------------- /VZ/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/home.png -------------------------------------------------------------------------------- /VZ/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/home@2x.png -------------------------------------------------------------------------------- /VZ/iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/iPhone.storyboard -------------------------------------------------------------------------------- /VZ/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/main.m -------------------------------------------------------------------------------- /VZ/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/map.png -------------------------------------------------------------------------------- /VZ/map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/map@2x.png -------------------------------------------------------------------------------- /VZ/navBg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/navBg@2x.png -------------------------------------------------------------------------------- /VZ/near@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/near@2x.png -------------------------------------------------------------------------------- /VZ/pics@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/pics@2x.png -------------------------------------------------------------------------------- /VZ/req@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/req@2x.png -------------------------------------------------------------------------------- /VZ/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/search.png -------------------------------------------------------------------------------- /VZ/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/search@2x.png -------------------------------------------------------------------------------- /VZ/searchClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/searchClose.png -------------------------------------------------------------------------------- /VZ/searchClose@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/searchClose@2x.png -------------------------------------------------------------------------------- /VZ/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/settings@2x.png -------------------------------------------------------------------------------- /VZ/spam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/spam.png -------------------------------------------------------------------------------- /VZ/spam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/spam@2x.png -------------------------------------------------------------------------------- /VZ/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/trash.png -------------------------------------------------------------------------------- /VZ/trash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YANGReal/VZ/HEAD/VZ/trash@2x.png -------------------------------------------------------------------------------- /VZ/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | "CFBundleDisplayName" ="微转"; --------------------------------------------------------------------------------