TvOSPinKeyboard
  • May 26, 2025

PIN keyboard for tvOS

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: ” + pin

 

 

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
  • buttonsNormalBackgroundEndCos

GitHub


View Github

YOU MIGHT ALSO LIKE...
🧭 NavigationKit

NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. 💻 Installation 📦 Swift Package Manager Using Swift Package Manager, add ...

swiftui-navigation-stack

An alternative SwiftUI NavigationView implementing classic stack-based navigation giving also some more control on animations and programmatic navigation. NavigationStack Installation ...

Stinsen

Simple, powerful and elegant implementation of the Coordinator pattern in SwiftUI. Stinsen is written using 100% SwiftUI which makes it ...

SwiftUI Router

With SwiftUI Router you can power your SwiftUI app with path-based routing. By utilizing a path-based system, navigation in your app becomes ...

FlowStacks

This package takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers, allowing you to use the same API not just ...