Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/efremidze/numpad
Number Pad (inspired by Square)
https://github.com/efremidze/numpad
apple carthage cocoapods digits keyboard number numpad pad square swift
Last synced: 2 days ago
JSON representation
Number Pad (inspired by Square)
- Host: GitHub
- URL: https://github.com/efremidze/numpad
- Owner: efremidze
- License: mit
- Created: 2016-01-06T21:04:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-26T23:08:02.000Z (over 5 years ago)
- Last Synced: 2024-10-05T15:02:38.911Z (about 1 month ago)
- Topics: apple, carthage, cocoapods, digits, keyboard, number, numpad, pad, square, swift
- Language: Swift
- Homepage:
- Size: 1.67 MB
- Stars: 85
- Watchers: 10
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# NumPad
[![Language](https://img.shields.io/badge/Swift-4-orange.svg?style=flat)](https://swift.org)
[![Version](https://img.shields.io/cocoapods/v/NumPad.svg?style=flat)](http://cocoapods.org/pods/NumPad)
[![CI Status](http://img.shields.io/travis/efremidze/NumPad.svg?style=flat)](https://travis-ci.org/efremidze/NumPad)
[![codebeat badge](https://codebeat.co/badges/c41fb90e-aa9f-4a40-85b4-9df9011e7931)](https://codebeat.co/projects/github-com-efremidze-numpad)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)Number Pad inspired by [Square](https://square.com). This module is based on [LEAmountInputView](https://github.com/efremidze/LEAmountInputView).
![Demo](demo.gif)
```
$ pod try NumPad
```## Requirements
- iOS 9.0+
- Xcode 9.0+
- Swift 4 (NumPad 3.x), Swift 3 (NumPad 2.x), Swift 2.3 (NumPad 1.x)## Installation
### CocoaPods
To install with [CocoaPods](http://cocoapods.org/), simply add this in your `Podfile`:
```ruby
use_frameworks!
pod "NumPad"
```### Carthage
To install with [Carthage](https://github.com/Carthage/Carthage), simply add this in your `Cartfile`:
```ruby
github "efremidze/NumPad"
```### Manually
1. Download and drop ```NumPad.swift``` in your project.
2. Congratulations!## Usage
Add `NumPad` to your view.
```swift
import NumPadlet numPad = NumPad(frame: CGRect(x: 0, y: 0, width: 320, height: 600))
numPad.dataSource = self
numPad.delegate = self
addSubview(numPad)
```Use the `DefaultNumPad` for a preconfigured dataSource and delegate.
### Data Source
```swift
// number of rows
func numberOfRowsInNumPad(numPad: NumPad) -> Int// number of columns for row
func numPad(numPad: NumPad, numberOfColumnsInRow row: Row) -> Int// item for position
func numPad(numPad: NumPad, itemAtPosition position: Position) -> Item
```### Delegate
```swift
// handle item tap
func numPad(numPad: NumPad, itemTapped item: Item, atPosition position: Position)// item size for position
func numPad(numPad: NumPad, sizeForItemAtPosition position: Position) -> CGSize
```## Contributions
Contributions are totally welcome.
## License
NumPad is available under the MIT license. See the LICENSE file for more info.