├── README.md ├── ReportState.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── ReportState.xccheckout └── xcuserdata │ └── luyang.xcuserdatad │ └── xcschemes │ ├── ReportState.xcscheme │ └── xcschememanagement.plist ├── ReportState ├── AGIPCAlbumsController.h ├── AGIPCAlbumsController.m ├── AGIPCAssetsController.h ├── AGIPCAssetsController.m ├── AGIPCGridCell.h ├── AGIPCGridCell.m ├── AGIPCGridItem.h ├── AGIPCGridItem.m ├── AGIPCPreviewController.h ├── AGIPCPreviewController.m ├── AGIPCToolbarItem.h ├── AGIPCToolbarItem.m ├── AGImagePickerController+Helper.h ├── AGImagePickerController+Helper.m ├── AGImagePickerController.bundle │ ├── AGIPC-Bar-back.png │ ├── AGIPC-Bar-back@2x.png │ ├── AGIPC-Bar-bg.png │ ├── AGIPC-Bar-bg@2x.png │ ├── AGIPC-Checkmark-0.png │ ├── AGIPC-Checkmark-0@2x.png │ ├── AGIPC-Checkmark-1.png │ ├── AGIPC-Checkmark-1@2x.png │ ├── AGIPC-Checkmark-iPad.png │ ├── AGIPC-Checkmark-iPhone.png │ └── AGIPC-Checkmark-iPhone@2x.png ├── AGImagePickerController.h ├── AGImagePickerController.m ├── AGImagePickerControllerDefines.h ├── AGImagePreviewController.h ├── AGImagePreviewController.m ├── AGPreviewScrollView.h ├── AGPreviewScrollView.m ├── ALAsset+AGIPC.h ├── ALAsset+AGIPC.m ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── HeaderContent.h ├── ImagePickerChooseCell.h ├── ImagePickerChooseCell.m ├── ImagePickerChooseView.h ├── ImagePickerChooseView.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── LocationViewController.h ├── LocationViewController.m ├── ReportState.xcdatamodeld │ ├── .xccurrentversion │ └── ReportState.xcdatamodel │ │ └── contents ├── ReportStateViewController.h ├── ReportStateViewController.m ├── ShowImageView.h ├── ShowImageView.m ├── ShowImageViewController.h ├── ShowImageViewController.m ├── UIButton+AGIPC.h ├── UIButton+AGIPC.m ├── UIImage+ReSize.h ├── UIImage+ReSize.m ├── UITableView+Improve.h ├── UITableView+Improve.m ├── WhoCanSeeViewController.h ├── WhoCanSeeViewController.m ├── addPictures.png ├── buttonSend@2x.png ├── choose.png ├── deletePhoto.png ├── location.png ├── main.m ├── picture1.png ├── picture2.png ├── picture3.png ├── picture4.png ├── reply.png ├── seen.png ├── 林峰.png ├── 范冰冰.png ├── 高圆圆.png └── 麦粒-app-30.jpg └── ReportStateTests ├── Info.plist └── ReportStateTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/README.md -------------------------------------------------------------------------------- /ReportState.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReportState.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReportState.xcodeproj/project.xcworkspace/xcshareddata/ReportState.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState.xcodeproj/project.xcworkspace/xcshareddata/ReportState.xccheckout -------------------------------------------------------------------------------- /ReportState.xcodeproj/xcuserdata/luyang.xcuserdatad/xcschemes/ReportState.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState.xcodeproj/xcuserdata/luyang.xcuserdatad/xcschemes/ReportState.xcscheme -------------------------------------------------------------------------------- /ReportState.xcodeproj/xcuserdata/luyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState.xcodeproj/xcuserdata/luyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ReportState/AGIPCAlbumsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCAlbumsController.h -------------------------------------------------------------------------------- /ReportState/AGIPCAlbumsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCAlbumsController.m -------------------------------------------------------------------------------- /ReportState/AGIPCAssetsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCAssetsController.h -------------------------------------------------------------------------------- /ReportState/AGIPCAssetsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCAssetsController.m -------------------------------------------------------------------------------- /ReportState/AGIPCGridCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCGridCell.h -------------------------------------------------------------------------------- /ReportState/AGIPCGridCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCGridCell.m -------------------------------------------------------------------------------- /ReportState/AGIPCGridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCGridItem.h -------------------------------------------------------------------------------- /ReportState/AGIPCGridItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCGridItem.m -------------------------------------------------------------------------------- /ReportState/AGIPCPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCPreviewController.h -------------------------------------------------------------------------------- /ReportState/AGIPCPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCPreviewController.m -------------------------------------------------------------------------------- /ReportState/AGIPCToolbarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCToolbarItem.h -------------------------------------------------------------------------------- /ReportState/AGIPCToolbarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGIPCToolbarItem.m -------------------------------------------------------------------------------- /ReportState/AGImagePickerController+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController+Helper.h -------------------------------------------------------------------------------- /ReportState/AGImagePickerController+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController+Helper.m -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Bar-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Bar-back.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Bar-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Bar-back@2x.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Bar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Bar-bg.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Bar-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Bar-bg@2x.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-0.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-0@2x.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-1.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-1@2x.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-iPad.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-iPhone.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-iPhone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.bundle/AGIPC-Checkmark-iPhone@2x.png -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.h -------------------------------------------------------------------------------- /ReportState/AGImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerController.m -------------------------------------------------------------------------------- /ReportState/AGImagePickerControllerDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePickerControllerDefines.h -------------------------------------------------------------------------------- /ReportState/AGImagePreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePreviewController.h -------------------------------------------------------------------------------- /ReportState/AGImagePreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGImagePreviewController.m -------------------------------------------------------------------------------- /ReportState/AGPreviewScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGPreviewScrollView.h -------------------------------------------------------------------------------- /ReportState/AGPreviewScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AGPreviewScrollView.m -------------------------------------------------------------------------------- /ReportState/ALAsset+AGIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ALAsset+AGIPC.h -------------------------------------------------------------------------------- /ReportState/ALAsset+AGIPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ALAsset+AGIPC.m -------------------------------------------------------------------------------- /ReportState/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AppDelegate.h -------------------------------------------------------------------------------- /ReportState/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/AppDelegate.m -------------------------------------------------------------------------------- /ReportState/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ReportState/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ReportState/HeaderContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/HeaderContent.h -------------------------------------------------------------------------------- /ReportState/ImagePickerChooseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ImagePickerChooseCell.h -------------------------------------------------------------------------------- /ReportState/ImagePickerChooseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ImagePickerChooseCell.m -------------------------------------------------------------------------------- /ReportState/ImagePickerChooseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ImagePickerChooseView.h -------------------------------------------------------------------------------- /ReportState/ImagePickerChooseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ImagePickerChooseView.m -------------------------------------------------------------------------------- /ReportState/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ReportState/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/Info.plist -------------------------------------------------------------------------------- /ReportState/LocationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/LocationViewController.h -------------------------------------------------------------------------------- /ReportState/LocationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/LocationViewController.m -------------------------------------------------------------------------------- /ReportState/ReportState.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ReportState.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ReportState/ReportState.xcdatamodeld/ReportState.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ReportState.xcdatamodeld/ReportState.xcdatamodel/contents -------------------------------------------------------------------------------- /ReportState/ReportStateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ReportStateViewController.h -------------------------------------------------------------------------------- /ReportState/ReportStateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ReportStateViewController.m -------------------------------------------------------------------------------- /ReportState/ShowImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ShowImageView.h -------------------------------------------------------------------------------- /ReportState/ShowImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ShowImageView.m -------------------------------------------------------------------------------- /ReportState/ShowImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ShowImageViewController.h -------------------------------------------------------------------------------- /ReportState/ShowImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/ShowImageViewController.m -------------------------------------------------------------------------------- /ReportState/UIButton+AGIPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/UIButton+AGIPC.h -------------------------------------------------------------------------------- /ReportState/UIButton+AGIPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/UIButton+AGIPC.m -------------------------------------------------------------------------------- /ReportState/UIImage+ReSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/UIImage+ReSize.h -------------------------------------------------------------------------------- /ReportState/UIImage+ReSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/UIImage+ReSize.m -------------------------------------------------------------------------------- /ReportState/UITableView+Improve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/UITableView+Improve.h -------------------------------------------------------------------------------- /ReportState/UITableView+Improve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/UITableView+Improve.m -------------------------------------------------------------------------------- /ReportState/WhoCanSeeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/WhoCanSeeViewController.h -------------------------------------------------------------------------------- /ReportState/WhoCanSeeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/WhoCanSeeViewController.m -------------------------------------------------------------------------------- /ReportState/addPictures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/addPictures.png -------------------------------------------------------------------------------- /ReportState/buttonSend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/buttonSend@2x.png -------------------------------------------------------------------------------- /ReportState/choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/choose.png -------------------------------------------------------------------------------- /ReportState/deletePhoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/deletePhoto.png -------------------------------------------------------------------------------- /ReportState/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/location.png -------------------------------------------------------------------------------- /ReportState/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/main.m -------------------------------------------------------------------------------- /ReportState/picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/picture1.png -------------------------------------------------------------------------------- /ReportState/picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/picture2.png -------------------------------------------------------------------------------- /ReportState/picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/picture3.png -------------------------------------------------------------------------------- /ReportState/picture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/picture4.png -------------------------------------------------------------------------------- /ReportState/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/reply.png -------------------------------------------------------------------------------- /ReportState/seen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/seen.png -------------------------------------------------------------------------------- /ReportState/林峰.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/林峰.png -------------------------------------------------------------------------------- /ReportState/范冰冰.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/范冰冰.png -------------------------------------------------------------------------------- /ReportState/高圆圆.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/高圆圆.png -------------------------------------------------------------------------------- /ReportState/麦粒-app-30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportState/麦粒-app-30.jpg -------------------------------------------------------------------------------- /ReportStateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportStateTests/Info.plist -------------------------------------------------------------------------------- /ReportStateTests/ReportStateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenxiaoyang/ReportState/HEAD/ReportStateTests/ReportStateTests.m --------------------------------------------------------------------------------