├── README.md ├── Record Video With Swift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── rajbala.xcuserdatad │ └── xcschemes │ ├── Record Video With Swift.xcscheme │ └── xcschememanagement.plist ├── Record Video With Swift ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist └── ViewController.swift └── Record Video With SwiftTests ├── Info.plist └── Record_Video_With_SwiftTests.swift /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/README.md -------------------------------------------------------------------------------- /Record Video With Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Record Video With Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Record Video With Swift.xcodeproj/xcuserdata/rajbala.xcuserdatad/xcschemes/Record Video With Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift.xcodeproj/xcuserdata/rajbala.xcuserdatad/xcschemes/Record Video With Swift.xcscheme -------------------------------------------------------------------------------- /Record Video With Swift.xcodeproj/xcuserdata/rajbala.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift.xcodeproj/xcuserdata/rajbala.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Record Video With Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Record Video With Swift/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Record Video With Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Record Video With Swift/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Record Video With Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift/Info.plist -------------------------------------------------------------------------------- /Record Video With Swift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With Swift/ViewController.swift -------------------------------------------------------------------------------- /Record Video With SwiftTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With SwiftTests/Info.plist -------------------------------------------------------------------------------- /Record Video With SwiftTests/Record_Video_With_SwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajbala/Record-Video-With-Swift/HEAD/Record Video With SwiftTests/Record_Video_With_SwiftTests.swift --------------------------------------------------------------------------------