All Projects → tiagomnh → Licensingviewcontroller

tiagomnh / Licensingviewcontroller

Licence: mit
📃 UIViewController subclass with a simple API for displaying licensing information.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Licensingviewcontroller

Scrollstackcontroller
🧩 Easy scrollable layouts in UIKit
Stars: ✭ 281 (+162.62%)
Mutual labels:  uiviewcontroller
Splarkcontroller
Custom transition between controllers. Settings controller for your iOS app.
Stars: ✭ 693 (+547.66%)
Mutual labels:  uiviewcontroller
Swiftassetspickercontroller
A simple assets picker controller based on iOS 8 Photos framework. Supports iCloud photos and videos. It's written in Swift.
Stars: ✭ 81 (-24.3%)
Mutual labels:  uiviewcontroller
Pyprotect
A lightweight python code protector, makes your python project harder to reverse engineer
Stars: ✭ 317 (+196.26%)
Mutual labels:  licensing
Gknavigationbarviewcontroller
iOS自定义导航栏-导航栏联动
Stars: ✭ 637 (+495.33%)
Mutual labels:  uiviewcontroller
Licensing
Microsoft 365 licensing diagrams
Stars: ✭ 891 (+732.71%)
Mutual labels:  licensing
tools-python
A Python library to parse, validate and create SPDX documents.
Stars: ✭ 65 (-39.25%)
Mutual labels:  licensing
Specs
COALA IP is a blockchain-ready, community-driven protocol for intellectual property licensing.
Stars: ✭ 98 (-8.41%)
Mutual labels:  licensing
Licensed
A Ruby gem to cache and verify the licenses of dependencies
Stars: ✭ 690 (+544.86%)
Mutual labels:  licensing
Realm Loginkit
A generic interface for logging in to Realm Mobile Platform apps
Stars: ✭ 70 (-34.58%)
Mutual labels:  uiviewcontroller
Licensecc
Software licensing, copy protection in C++. It has few dependencies and it's cross-platform.
Stars: ✭ 363 (+239.25%)
Mutual labels:  licensing
Licensee
A Ruby Gem to detect under what license a project is distributed.
Stars: ✭ 476 (+344.86%)
Mutual labels:  licensing
Cryptolens Golang
Client API to access the functionality of Cryptolens Software Licensing API
Stars: ✭ 20 (-81.31%)
Mutual labels:  licensing
Knphotobrowser
📷 图片 || 视频 浏览器(本地和网络) , UIViewController + CollectionView , 完美适配 iPhone 以及 iPad ,屏幕旋转功能 , 适配SDWebImage 5.0
Stars: ✭ 296 (+176.64%)
Mutual labels:  uiviewcontroller
Opendefinition
Open Definition source
Stars: ✭ 87 (-18.69%)
Mutual labels:  licensing
licensor
write licenses to stdout
Stars: ✭ 138 (+28.97%)
Mutual labels:  licensing
Copyright
Copyright is a simple application for updating all the copyright info in your Swift or Obj-C projects.
Stars: ✭ 5 (-95.33%)
Mutual labels:  licensing
Ethicalsource.dev
Home of the Organization for Ethical Source
Stars: ✭ 105 (-1.87%)
Mutual labels:  licensing
Panslip
Use PanGesture to dismiss view on UIViewController and UIView
Stars: ✭ 93 (-13.08%)
Mutual labels:  uiviewcontroller
Scancode Toolkit
🔎 ScanCode detects licenses, copyrights, package manifests & dependencies and more by scanning code ... to discover and inventory open source and third-party packages used in your code.
Stars: ✭ 1,134 (+959.81%)
Mutual labels:  licensing

LicensingViewController

Version Swift Carthage compatible GitHub license

LicensingViewController is a UIViewController subclass with a simple API for displaying licensing information.

Usage

import LicensingViewController

let licensingViewController = LicensingViewController()

licensingViewController.title = "Acknowledgments"

let alamofireItem = LicensingItem(
    title: "Alamofire",
    license: License.mit(owner: "Alamofire Software Foundation (http://alamofire.org/)", years: "2014")
)

let caniveteItem = LicensingItem(
    title: "Canivete",
    license: License.mit(owner: "Tiago Henriques (http://tiagomnh.com)", years: "2015")
)

let kingfisherItem = LicensingItem(
    title: "Kingfisher",
    license: License.mit(owner: "Wei Wang", years: "2015")
)

licensingViewController.items = [alamofireItem, caniveteItem, kingfisherItem]

Screenshot

Screenshot

Requirements

  • iOS 8.0+
  • Xcode 9 (Swift 3.2)

Installation

LicensingViewController is available through Carthage. To install it, simply add the following line to your Cartfile:

github "tiagomnh/LicensingViewController"

Then run carthage update.

License

LicensingViewController is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].