├── LICENSE ├── README.md ├── jottyswift.gif ├── jottyswit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── abhisheksingh.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── abhisheksingh.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── jottyswit ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Document.swift ├── DocumentBrowserViewController.swift ├── DocumentView.swift └── Info.plist /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/README.md -------------------------------------------------------------------------------- /jottyswift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswift.gif -------------------------------------------------------------------------------- /jottyswit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /jottyswit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /jottyswit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /jottyswit.xcodeproj/project.xcworkspace/xcuserdata/abhisheksingh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit.xcodeproj/project.xcworkspace/xcuserdata/abhisheksingh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /jottyswit.xcodeproj/xcuserdata/abhisheksingh.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit.xcodeproj/xcuserdata/abhisheksingh.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /jottyswit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/AppDelegate.swift -------------------------------------------------------------------------------- /jottyswit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /jottyswit/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /jottyswit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /jottyswit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /jottyswit/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/Document.swift -------------------------------------------------------------------------------- /jottyswit/DocumentBrowserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/DocumentBrowserViewController.swift -------------------------------------------------------------------------------- /jottyswit/DocumentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/DocumentView.swift -------------------------------------------------------------------------------- /jottyswit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asingh33/Jotty/HEAD/jottyswit/Info.plist --------------------------------------------------------------------------------