- July 11, 2025
- Mins Read
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.
A SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...