Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fulldecent/FDTextFieldTableViewCell
A UITableViewCell with an editable text field
https://github.com/fulldecent/FDTextFieldTableViewCell
cocoapods swift ui ui-components uitableviewcell
Last synced: about 1 month ago
JSON representation
A UITableViewCell with an editable text field
- Host: GitHub
- URL: https://github.com/fulldecent/FDTextFieldTableViewCell
- Owner: fulldecent
- License: mit
- Created: 2016-06-13T15:11:19.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T19:04:15.000Z (about 5 years ago)
- Last Synced: 2024-11-30T20:47:16.262Z (about 2 months ago)
- Topics: cocoapods, swift, ui, ui-components, uitableviewcell
- Language: Swift
- Size: 55.7 KB
- Stars: 25
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - FDTextFieldTableViewCell - Adds a UITextField to the cell and places it correctly. (UI / Form & Settings)
- awesome-swift - FDTextFieldTableViewCell - Adds a UITextField to the cell and places it correctly. (Libs / UI)
- awesome-ios-star - FDTextFieldTableViewCell - Adds a UITextField to the cell and places it correctly. (UI / Form & Settings)
- fucking-awesome-swift - FDTextFieldTableViewCell - Adds a UITextField to the cell and places it correctly. (Libs / UI)
- awesome-swift - FDTextFieldTableViewCell - A UITableViewCell with an editable text field ` 📝 2 years ago` (UI [🔝](#readme))
README
FDTextFieldTableViewCell
================[![CI Status](http://img.shields.io/travis/fulldecent/FDTextFieldTableViewCell.svg?style=flat)](https://travis-ci.org/fulldecent/FDTextFieldTableViewCell)
[![Version](https://img.shields.io/cocoapods/v/FDTextFieldTableViewCell.svg?style=flat)](http://cocoadocs.org/docsets/FDTextFieldTableViewCell)
[![License](https://img.shields.io/cocoapods/l/FDTextFieldTableViewCell.svg?style=flat)](http://cocoadocs.org/docsets/FDTextFieldTableViewCell)
[![Platform](https://img.shields.io/cocoapods/p/FDTextFieldTableViewCell.svg?style=flat)](http://cocoadocs.org/docsets/FDTextFieldTableViewCell)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)Features
========* Fully featured like the Right Detail style
* Adds a UITextField to the cell and places it correctlyUsage
=====Select a cell in your storyboard and use the inspector to change the Custom Class to `FDTextFieldTableViewCell`.
Switch to the attributes inspector and set the style to Right Detail.
In your `UITableViewController` subclass, do something like:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tableView.dequeueReusableCellWithIdentifier("textField") as! FDTextFieldTableViewCell
cell.textLabel!.text = "hi"
cell.textField.text = "editMe"
return cell
}Installation
============## Installation
Add this to your project using Swift Package Manager. In Xcode that is simply: File > Swift Packages > Add Package Dependency... and you're done. Alternative installations options are shown below for legacy projects.
### CocoaPods
If you are already using [CocoaPods](http://cocoapods.org), just add 'FDTextFieldTableViewCell' to your `Podfile` then run `pod install`.
### Carthage
If you are already using [Carthage](https://github.com/Carthage/Carthage), just add to your `Cartfile`:
```ogdl
github "fulldecent/FDTextFieldTableViewCell"
```Then run `carthage update` to build the framework and drag the built `FDTextFieldTableViewCell`.framework into your Xcode project.