Popularity
1.2
Declining
Activity
0.0
Stable
26
3
8

Programming language: Swift
License: MIT License
Tags: UI     Form & Settings    
Latest version: v3.0.1

FDTextFieldTableViewCell alternatives and similar libraries

Based on the "Form & Settings" category.
Alternatively, view FDTextFieldTableViewCell alternatives based on common mentions on social networks and blogs.

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

Add another 'Form & Settings' Library

README

FDTextFieldTableViewCell

CI Status Version License Platform Carthage compatible

Features

  • Fully featured like the Right Detail style
  • Adds a UITextField to the cell and places it correctly

Usage

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, just add 'FDTextFieldTableViewCell' to your Podfile then run pod install.

Carthage

If you are already using Carthage, just add to your Cartfile:

github "fulldecent/FDTextFieldTableViewCell"

Then run carthage update to build the framework and drag the built FDTextFieldTableViewCell.framework into your Xcode project.


*Note that all licence references and agreements mentioned in the FDTextFieldTableViewCell README section above are relevant to that project's source code only.