├── README.md ├── Text Detection Starter Project.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── SaiKambampati.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── idscomercial.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── simon.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── SaiKambampati.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── idscomercial.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── simon.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Text Detection Starter Project ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift └── TextDetectionStarter.zip /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/README.md -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/project.xcworkspace/xcuserdata/SaiKambampati.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/project.xcworkspace/xcuserdata/SaiKambampati.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/project.xcworkspace/xcuserdata/idscomercial.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/project.xcworkspace/xcuserdata/idscomercial.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/project.xcworkspace/xcuserdata/simon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/project.xcworkspace/xcuserdata/simon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/xcuserdata/SaiKambampati.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/xcuserdata/SaiKambampati.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/xcuserdata/idscomercial.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/xcuserdata/idscomercial.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Text Detection Starter Project.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Text Detection Starter Project/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project/AppDelegate.swift -------------------------------------------------------------------------------- /Text Detection Starter Project/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Text Detection Starter Project/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Text Detection Starter Project/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Text Detection Starter Project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project/Info.plist -------------------------------------------------------------------------------- /Text Detection Starter Project/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/Text Detection Starter Project/ViewController.swift -------------------------------------------------------------------------------- /TextDetectionStarter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/TextDetection/HEAD/TextDetectionStarter.zip --------------------------------------------------------------------------------