Popularity
2.8
Stable
Activity
0.0
Stable
102
14
11

Programming language: Swift
License: MIT License
Tags: Apple TV    
Latest version: v2.0.1

TvOSPinKeyboard alternatives and similar libraries

Based on the "Apple TV" category.
Alternatively, view TvOSPinKeyboard alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of TvOSPinKeyboard or a related project?

Add another 'Apple TV' Library

README

TvOSPinKeyboard

PIN keyboard for tvOS

[](Preview.gif)

Description

TvOSPinKeyboard is a view controller that allows easily asking for PIN codes in tvOS.

Requirements

  • tvOS 9.0+
  • Xcode 11

Installation

Cocoapods

To integrate TvOSPinKeyboard into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :tvos, '9.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'TvOSPinKeyboard', '~> 2.0.2'
end

Usage

All you need is to create an instance of TvOSPinViewController and to present it on the screen. Pin code will be sent back through TvOSPinKeyboardDelegate


import UIKit
import TvOSPinKeyboard

class ViewController: UIViewController, TvOSPinKeyboardViewDelegate {

    @IBOutlet private weak var pinLabel: UILabel!

    @IBAction func pinButtonWasPressed(_ sender: Any) {
        let pinKeyboard = TvOSPinKeyboardViewController(withTitle: "Introduce your PIN", message: "A pin code is required")
        pinKeyboard.delegate = self

        present(pinKeyboard, animated: true, completion: nil)
    }

    // MARK: - TvOSPinKeyboardViewDelegate

    func pinKeyboardDidEndEditing(pinCode: String) {
        pinLabel.text = "Your Pin Code is: " + pinCode
    }
}

Customization

Apart from the title, subtitle, TvOSPinKeyboard offers a wide level of customization

Customizable properties:

  • backgroundView
  • pinLength
  • titleFont
  • titleColor
  • subtitleFont
  • subtitleColor
  • pinFont
  • pinColor
  • pinBackgroundColor
  • numpadButtons
  • numpadFont
  • deleteButtonTitle
  • deleteButtonFont
  • buttonsNormalTitleColor
  • buttonsFocusedTitleColor
  • buttonsFocusedBackgroundColor
  • buttonsFocusedBackgroundEndColor
  • buttonsNormalBackgroundColor
  • buttonsNormalBackgroundEndColor