- Fully featured like the Right Detail style
- Adds a UITextField to the cell and places it correctly
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
}
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.
If you are already using CocoaPods, just add 'FDTextFieldTableViewCell' to your Podfile
then run pod install
.
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.