├── .gitignore ├── LICENSE ├── LicensingViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── LicensingViewController.xcscheme ├── LicensingViewController ├── Info.plist ├── License.swift ├── LicensingItem.swift ├── LicensingItemCell.swift ├── LicensingViewController.h └── LicensingViewController.swift ├── LicensingViewControllerDemo ├── AppDelegate.swift ├── Info.plist └── Launch Screen.storyboard ├── LicensingViewControllerTests ├── Info.plist └── LicensingViewControllerTests.swift ├── README.md └── Screenshots └── Screenshot1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /LicensingViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LicensingViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LicensingViewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LicensingViewController.xcodeproj/xcshareddata/xcschemes/LicensingViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController.xcodeproj/xcshareddata/xcschemes/LicensingViewController.xcscheme -------------------------------------------------------------------------------- /LicensingViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController/Info.plist -------------------------------------------------------------------------------- /LicensingViewController/License.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController/License.swift -------------------------------------------------------------------------------- /LicensingViewController/LicensingItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController/LicensingItem.swift -------------------------------------------------------------------------------- /LicensingViewController/LicensingItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController/LicensingItemCell.swift -------------------------------------------------------------------------------- /LicensingViewController/LicensingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController/LicensingViewController.h -------------------------------------------------------------------------------- /LicensingViewController/LicensingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewController/LicensingViewController.swift -------------------------------------------------------------------------------- /LicensingViewControllerDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewControllerDemo/AppDelegate.swift -------------------------------------------------------------------------------- /LicensingViewControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewControllerDemo/Info.plist -------------------------------------------------------------------------------- /LicensingViewControllerDemo/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewControllerDemo/Launch Screen.storyboard -------------------------------------------------------------------------------- /LicensingViewControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewControllerTests/Info.plist -------------------------------------------------------------------------------- /LicensingViewControllerTests/LicensingViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/LicensingViewControllerTests/LicensingViewControllerTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagomnh/LicensingViewController/HEAD/Screenshots/Screenshot1.png --------------------------------------------------------------------------------