├── .DS_Store ├── AdaptiveUILabel ├── AdaptiveUILabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── AdaptiveUILabel.xcscheme │ │ └── xcschememanagement.plist ├── AdaptiveUILabel │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── README.md ├── AdaptiveUITextView ├── .DS_Store ├── AdaptiveUITextView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── AdaptiveUITextView.xcscheme │ │ └── xcschememanagement.plist ├── AdaptiveUITextView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── README.md ├── CreatingUIPopovers ├── CreatingUIPopovers.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── CreatingUIPopovers.xcscheme │ │ └── xcschememanagement.plist ├── CreatingUIPopovers │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── PopoverController.swift │ └── ViewController.swift └── README.md ├── ExpandTableCellDemo ├── ExpandTableCellDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── ExpandTableCellDemo.xcscheme │ │ └── xcschememanagement.plist ├── ExpandTableCellDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── customCell.swift └── README.md ├── ExpandableTableViewSections ├── ExpandableTableViewSections.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── ExpandableTableViewSections.xcscheme │ │ └── xcschememanagement.plist └── ExpandableTableViewSections │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ ├── down-arrow.png │ ├── down-arrow@2x.png │ ├── right-arrow.png │ └── right-arrow@2x.png ├── ImageMagic ├── ImageMagic.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── ImageMagic.xcscheme │ │ └── xcschememanagement.plist └── ImageMagic │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── 1xImage.imageset │ │ ├── Contents.json │ │ └── Delete_50.png │ ├── 2xImage.imageset │ │ ├── Contents.json │ │ └── Delete_100.png │ ├── 3xImage.imageset │ │ ├── Contents.json │ │ └── Delete_150.png │ ├── All.imageset │ │ ├── Contents.json │ │ ├── Delete_100.png │ │ ├── Delete_150.png │ │ └── Delete_50.png │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── DeleteFill.imageset │ │ ├── Contents.json │ │ ├── Delete_100.png │ │ ├── Delete_150.png │ │ └── Delete_50.png │ ├── Image.imageset │ │ └── Contents.json │ ├── VectorPDF1x.imageset │ │ ├── Contents.json │ │ └── Delete.pdf │ ├── VectorPDF2x.imageset │ │ ├── Contents.json │ │ └── Delete2x.pdf │ └── VectorPDF3x.imageset │ │ ├── Contents.json │ │ └── Delete3x.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ProtectionCD ├── .DS_Store ├── ProtectionCD.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── ProtectionCD.xcscheme │ │ └── xcschememanagement.plist └── ProtectionCD │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ProtectionCD.xcdatamodeld │ ├── .xccurrentversion │ └── ProtectionCD.xcdatamodel │ │ └── contents │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── QRCoder ├── .DS_Store ├── QRCoder.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── QRCoder.xcscheme │ │ └── xcschememanagement.plist └── QRCoder │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── ViewControllers │ ├── GenerateQRVC.swift │ ├── OpenQRVC.swift │ └── ScanQRVC.swift ├── ScrollDemo ├── ScrollDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ └── ScrollDemo.xcscheme └── ScrollDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── kiwi.imageset │ │ ├── Contents.json │ │ └── kiwi.jpeg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ScrollDemo.xcdatamodeld │ ├── .xccurrentversion │ └── ScrollDemo.xcdatamodel │ │ └── contents │ └── ViewController.swift ├── SwipingView ├── .DS_Store ├── README.md ├── SwipingView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ └── xcschemes │ │ ├── SwipingView.xcscheme │ │ ├── imageview (Notification).xcscheme │ │ ├── imageview.xcscheme │ │ └── xcschememanagement.plist └── SwipingView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── TextViewLikeWhatsApp ├── TextViewLikeWhatsApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Inquisitoralex90741qzimT.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ ├── alex.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── arun.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Inquisitoralex90741qzimT.xcuserdatad │ │ └── xcschemes │ │ │ ├── TextViewLikeWhatsApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── alex.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── TextViewLikeWhatsApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── arun.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── TextViewLikeWhatsApp.xcscheme │ │ └── xcschememanagement.plist └── TextViewLikeWhatsApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon-1.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@1x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-76x76@3x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Chat_Bubble_Green_1.png │ ├── Info.plist │ ├── Next.png │ ├── Next@2x.png │ ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings │ └── ViewController.swift ├── TimerApp ├── TimerApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── arun.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── TimerApp.xcscheme └── TimerApp │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── TypeAliasDemo ├── TypeAliasDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── arun.xcuserdatad │ └── xcschemes │ └── TypeAliasDemo.xcscheme └── TypeAliasDemo ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── TypeAliasDemo.xcdatamodeld ├── .xccurrentversion └── TypeAliasDemo.xcdatamodel │ └── contents └── ViewController.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/.DS_Store -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/AdaptiveUILabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/AdaptiveUILabel.xcscheme -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel/AppDelegate.swift -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel/Info.plist -------------------------------------------------------------------------------- /AdaptiveUILabel/AdaptiveUILabel/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/AdaptiveUILabel/ViewController.swift -------------------------------------------------------------------------------- /AdaptiveUILabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUILabel/README.md -------------------------------------------------------------------------------- /AdaptiveUITextView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/.DS_Store -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/AdaptiveUITextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/AdaptiveUITextView.xcscheme -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView/AppDelegate.swift -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView/Info.plist -------------------------------------------------------------------------------- /AdaptiveUITextView/AdaptiveUITextView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/AdaptiveUITextView/ViewController.swift -------------------------------------------------------------------------------- /AdaptiveUITextView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/AdaptiveUITextView/README.md -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/CreatingUIPopovers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/CreatingUIPopovers.xcscheme -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/AppDelegate.swift -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/Info.plist -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/PopoverController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/PopoverController.swift -------------------------------------------------------------------------------- /CreatingUIPopovers/CreatingUIPopovers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/CreatingUIPopovers/ViewController.swift -------------------------------------------------------------------------------- /CreatingUIPopovers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/CreatingUIPopovers/README.md -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ExpandTableCellDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ExpandTableCellDemo.xcscheme -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/Info.plist -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/ViewController.swift -------------------------------------------------------------------------------- /ExpandTableCellDemo/ExpandTableCellDemo/customCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/ExpandTableCellDemo/customCell.swift -------------------------------------------------------------------------------- /ExpandTableCellDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandTableCellDemo/README.md -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ExpandableTableViewSections.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ExpandableTableViewSections.xcscheme -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/AppDelegate.swift -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/Info.plist -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/ViewController.swift -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/down-arrow.png -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/down-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/down-arrow@2x.png -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/right-arrow.png -------------------------------------------------------------------------------- /ExpandableTableViewSections/ExpandableTableViewSections/right-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ExpandableTableViewSections/ExpandableTableViewSections/right-arrow@2x.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ImageMagic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ImageMagic.xcscheme -------------------------------------------------------------------------------- /ImageMagic/ImageMagic.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/AppDelegate.swift -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/1xImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/1xImage.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/1xImage.imageset/Delete_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/1xImage.imageset/Delete_50.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/2xImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/2xImage.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/2xImage.imageset/Delete_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/2xImage.imageset/Delete_100.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/3xImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/3xImage.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/3xImage.imageset/Delete_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/3xImage.imageset/Delete_150.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Delete_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Delete_100.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Delete_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Delete_150.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Delete_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/All.imageset/Delete_50.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Delete_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Delete_100.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Delete_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Delete_150.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Delete_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/DeleteFill.imageset/Delete_50.png -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/VectorPDF1x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/VectorPDF1x.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/VectorPDF1x.imageset/Delete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/VectorPDF1x.imageset/Delete.pdf -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/VectorPDF2x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/VectorPDF2x.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/VectorPDF2x.imageset/Delete2x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/VectorPDF2x.imageset/Delete2x.pdf -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/VectorPDF3x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/VectorPDF3x.imageset/Contents.json -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Assets.xcassets/VectorPDF3x.imageset/Delete3x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Assets.xcassets/VectorPDF3x.imageset/Delete3x.pdf -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/Info.plist -------------------------------------------------------------------------------- /ImageMagic/ImageMagic/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ImageMagic/ImageMagic/ViewController.swift -------------------------------------------------------------------------------- /ProtectionCD/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/.DS_Store -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ProtectionCD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ProtectionCD.xcscheme -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/AppDelegate.h -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/AppDelegate.m -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/Info.plist -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/ProtectionCD.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/ProtectionCD.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/ProtectionCD.xcdatamodeld/ProtectionCD.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/ProtectionCD.xcdatamodeld/ProtectionCD.xcdatamodel/contents -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/ViewController.h -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/ViewController.m -------------------------------------------------------------------------------- /ProtectionCD/ProtectionCD/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ProtectionCD/ProtectionCD/main.m -------------------------------------------------------------------------------- /QRCoder/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/.DS_Store -------------------------------------------------------------------------------- /QRCoder/QRCoder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /QRCoder/QRCoder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /QRCoder/QRCoder.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /QRCoder/QRCoder.xcodeproj/xcuserdata/arun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder.xcodeproj/xcuserdata/arun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /QRCoder/QRCoder.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/QRCoder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/QRCoder.xcscheme -------------------------------------------------------------------------------- /QRCoder/QRCoder.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /QRCoder/QRCoder/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/AppDelegate.swift -------------------------------------------------------------------------------- /QRCoder/QRCoder/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /QRCoder/QRCoder/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /QRCoder/QRCoder/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /QRCoder/QRCoder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/Info.plist -------------------------------------------------------------------------------- /QRCoder/QRCoder/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/ViewController.swift -------------------------------------------------------------------------------- /QRCoder/QRCoder/ViewControllers/GenerateQRVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/ViewControllers/GenerateQRVC.swift -------------------------------------------------------------------------------- /QRCoder/QRCoder/ViewControllers/OpenQRVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/ViewControllers/OpenQRVC.swift -------------------------------------------------------------------------------- /QRCoder/QRCoder/ViewControllers/ScanQRVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/QRCoder/QRCoder/ViewControllers/ScanQRVC.swift -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ScrollDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/ScrollDemo.xcscheme -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Assets.xcassets/kiwi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Assets.xcassets/kiwi.imageset/Contents.json -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Assets.xcassets/kiwi.imageset/kiwi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Assets.xcassets/kiwi.imageset/kiwi.jpeg -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/Info.plist -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/ScrollDemo.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/ScrollDemo.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/ScrollDemo.xcdatamodeld/ScrollDemo.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/ScrollDemo.xcdatamodeld/ScrollDemo.xcdatamodel/contents -------------------------------------------------------------------------------- /ScrollDemo/ScrollDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/ScrollDemo/ScrollDemo/ViewController.swift -------------------------------------------------------------------------------- /SwipingView/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/.DS_Store -------------------------------------------------------------------------------- /SwipingView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/README.md -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/SwipingView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/SwipingView.xcscheme -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/imageview (Notification).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/imageview (Notification).xcscheme -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/imageview.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/imageview.xcscheme -------------------------------------------------------------------------------- /SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwipingView/SwipingView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView/AppDelegate.swift -------------------------------------------------------------------------------- /SwipingView/SwipingView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwipingView/SwipingView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwipingView/SwipingView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwipingView/SwipingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView/Info.plist -------------------------------------------------------------------------------- /SwipingView/SwipingView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/SwipingView/SwipingView/ViewController.swift -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/xcuserdata/Inquisitoralex90741qzimT.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/xcuserdata/Inquisitoralex90741qzimT.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/xcuserdata/alex.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/xcuserdata/alex.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/project.xcworkspace/xcuserdata/arun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/Inquisitoralex90741qzimT.xcuserdatad/xcschemes/TextViewLikeWhatsApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/Inquisitoralex90741qzimT.xcuserdatad/xcschemes/TextViewLikeWhatsApp.xcscheme -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/Inquisitoralex90741qzimT.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/Inquisitoralex90741qzimT.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/TextViewLikeWhatsApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/TextViewLikeWhatsApp.xcscheme -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/TextViewLikeWhatsApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/TextViewLikeWhatsApp.xcscheme -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/AppDelegate.swift -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Contents.json -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon-1.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Chat_Bubble_Green_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Chat_Bubble_Green_1.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Info.plist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Next.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Next@2x.png -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /TextViewLikeWhatsApp/TextViewLikeWhatsApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TextViewLikeWhatsApp/TextViewLikeWhatsApp/ViewController.swift -------------------------------------------------------------------------------- /TimerApp/TimerApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TimerApp/TimerApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TimerApp/TimerApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TimerApp/TimerApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/TimerApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/TimerApp.xcscheme -------------------------------------------------------------------------------- /TimerApp/TimerApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp/AppDelegate.swift -------------------------------------------------------------------------------- /TimerApp/TimerApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TimerApp/TimerApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TimerApp/TimerApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TimerApp/TimerApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp/Info.plist -------------------------------------------------------------------------------- /TimerApp/TimerApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TimerApp/TimerApp/ViewController.swift -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/TypeAliasDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo.xcodeproj/xcuserdata/arun.xcuserdatad/xcschemes/TypeAliasDemo.xcscheme -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/AppDelegate.swift -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/Info.plist -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/TypeAliasDemo.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/TypeAliasDemo.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/TypeAliasDemo.xcdatamodeld/TypeAliasDemo.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/TypeAliasDemo.xcdatamodeld/TypeAliasDemo.xcdatamodel/contents -------------------------------------------------------------------------------- /TypeAliasDemo/TypeAliasDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantumarun/Demos/HEAD/TypeAliasDemo/TypeAliasDemo/ViewController.swift --------------------------------------------------------------------------------