FDTextFieldTableViewCell alternatives and similar libraries
Based on the "Form & Settings" category.
Alternatively, view FDTextFieldTableViewCell alternatives based on common mentions on social networks and blogs.
-
formvalidator-swift
A framework to validate inputs of text fields and text views in a convenient way. -
SuggestionsBox
SuggestionsBox helps you build better a product trough your user suggestions. Written in Swift. 🗳
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of FDTextFieldTableViewCell or a related project?
README
FDTextFieldTableViewCell
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.