├── .DS_Store ├── README.md ├── YBImgPicker ├── .DS_Store ├── ViewCell │ ├── YBImgPickerTableViewCell.h │ ├── YBImgPickerTableViewCell.m │ ├── YBImgPickerTableViewCell.xib │ ├── YBImgPickerViewCell.h │ ├── YBImgPickerViewCell.m │ ├── YBImgPickerViewCell.xib │ ├── YBPreViewImgViewCell.h │ ├── YBPreViewImgViewCell.m │ └── YBPreViewImgViewCell.xib ├── ViewController │ ├── YBImgPickerViewController.h │ ├── YBImgPickerViewController.m │ ├── YBImgPickerViewController.xib │ ├── YBPreImgViewController.h │ ├── YBPreImgViewController.m │ └── YBPreImgViewController.xib └── YBimgPickerView.bundle │ ├── arrow@2x.png │ ├── arrow@3x.png │ ├── isChoosenN@2x.png │ ├── isChoosenN@3x.png │ ├── isChoosenY@2x.png │ ├── isChoosenY@3x.png │ ├── takePicture@2x.png │ └── takePicture@3x.png ├── settingsTest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── settingsTest.xccheckout │ └── xcuserdata │ │ └── Eki_Song.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Eki_Song.xcuserdatad │ └── xcschemes │ │ ├── settingsTest.xcscheme │ │ └── xcschememanagement.plist │ └── songyixing.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── settingsTest.xcscheme │ └── xcschememanagement.plist ├── settingsTest ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── IPHelper.h ├── IPHelper.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings ├── ViewController.h ├── ViewController.m ├── ViewController.xib └── main.m └── settingsTestTests ├── Info.plist └── settingsTestTests.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/README.md -------------------------------------------------------------------------------- /YBImgPicker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/.DS_Store -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBImgPickerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBImgPickerTableViewCell.h -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBImgPickerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBImgPickerTableViewCell.m -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBImgPickerTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBImgPickerTableViewCell.xib -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBImgPickerViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBImgPickerViewCell.h -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBImgPickerViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBImgPickerViewCell.m -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBImgPickerViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBImgPickerViewCell.xib -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBPreViewImgViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBPreViewImgViewCell.h -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBPreViewImgViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBPreViewImgViewCell.m -------------------------------------------------------------------------------- /YBImgPicker/ViewCell/YBPreViewImgViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewCell/YBPreViewImgViewCell.xib -------------------------------------------------------------------------------- /YBImgPicker/ViewController/YBImgPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewController/YBImgPickerViewController.h -------------------------------------------------------------------------------- /YBImgPicker/ViewController/YBImgPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewController/YBImgPickerViewController.m -------------------------------------------------------------------------------- /YBImgPicker/ViewController/YBImgPickerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewController/YBImgPickerViewController.xib -------------------------------------------------------------------------------- /YBImgPicker/ViewController/YBPreImgViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewController/YBPreImgViewController.h -------------------------------------------------------------------------------- /YBImgPicker/ViewController/YBPreImgViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewController/YBPreImgViewController.m -------------------------------------------------------------------------------- /YBImgPicker/ViewController/YBPreImgViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/ViewController/YBPreImgViewController.xib -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/arrow@2x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/arrow@3x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/isChoosenN@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/isChoosenN@2x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/isChoosenN@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/isChoosenN@3x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/isChoosenY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/isChoosenY@2x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/isChoosenY@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/isChoosenY@3x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/takePicture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/takePicture@2x.png -------------------------------------------------------------------------------- /YBImgPicker/YBimgPickerView.bundle/takePicture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/YBImgPicker/YBimgPickerView.bundle/takePicture@3x.png -------------------------------------------------------------------------------- /settingsTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /settingsTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /settingsTest.xcodeproj/project.xcworkspace/xcshareddata/settingsTest.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/project.xcworkspace/xcshareddata/settingsTest.xccheckout -------------------------------------------------------------------------------- /settingsTest.xcodeproj/project.xcworkspace/xcuserdata/Eki_Song.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/project.xcworkspace/xcuserdata/Eki_Song.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /settingsTest.xcodeproj/xcuserdata/Eki_Song.xcuserdatad/xcschemes/settingsTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/xcuserdata/Eki_Song.xcuserdatad/xcschemes/settingsTest.xcscheme -------------------------------------------------------------------------------- /settingsTest.xcodeproj/xcuserdata/Eki_Song.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/xcuserdata/Eki_Song.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /settingsTest.xcodeproj/xcuserdata/songyixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/xcuserdata/songyixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /settingsTest.xcodeproj/xcuserdata/songyixing.xcuserdatad/xcschemes/settingsTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/xcuserdata/songyixing.xcuserdatad/xcschemes/settingsTest.xcscheme -------------------------------------------------------------------------------- /settingsTest.xcodeproj/xcuserdata/songyixing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest.xcodeproj/xcuserdata/songyixing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /settingsTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/AppDelegate.h -------------------------------------------------------------------------------- /settingsTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/AppDelegate.m -------------------------------------------------------------------------------- /settingsTest/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /settingsTest/IPHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/IPHelper.h -------------------------------------------------------------------------------- /settingsTest/IPHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/IPHelper.m -------------------------------------------------------------------------------- /settingsTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /settingsTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/Info.plist -------------------------------------------------------------------------------- /settingsTest/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /settingsTest/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /settingsTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/ViewController.h -------------------------------------------------------------------------------- /settingsTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/ViewController.m -------------------------------------------------------------------------------- /settingsTest/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/ViewController.xib -------------------------------------------------------------------------------- /settingsTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTest/main.m -------------------------------------------------------------------------------- /settingsTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTestTests/Info.plist -------------------------------------------------------------------------------- /settingsTestTests/settingsTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifriday/YBImgPicker/HEAD/settingsTestTests/settingsTestTests.m --------------------------------------------------------------------------------