All Projects → fulldecent → FDTextFieldTableViewCell

fulldecent / FDTextFieldTableViewCell

Licence: MIT License
A UITableViewCell with an editable text field

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to FDTextFieldTableViewCell

laratify
Laravel UI Components using TailwindCSS & AlpineJS
Stars: ✭ 13 (-45.83%)
Mutual labels:  ui-components
svelteit
Svelteit is a minimalistic UI/UX component library for Svelte and Sapper projects
Stars: ✭ 64 (+166.67%)
Mutual labels:  ui-components
SwimplyPlayIndicator
Animated PlayIndicator written in SwiftUI. Inspired by Apple's Music Player.
Stars: ✭ 52 (+116.67%)
Mutual labels:  ui-components
a11y-accordion-tabs
A script for an accessible accordion tabs component
Stars: ✭ 50 (+108.33%)
Mutual labels:  ui-components
phoenix component folders
Reusable UI components on Phoenix framework
Stars: ✭ 31 (+29.17%)
Mutual labels:  ui-components
ng-mono-repo-starter
Angular Mono Repo Starter
Stars: ✭ 79 (+229.17%)
Mutual labels:  ui-components
mijin
Tailwind CSS UI components build for Vue.js / Nuxt.js
Stars: ✭ 168 (+600%)
Mutual labels:  ui-components
TableViewKit
Empowering UITableView with painless multi-type cell support and built-in automatic state transition animations
Stars: ✭ 105 (+337.5%)
Mutual labels:  uitableviewcell
flextreemap
TreeMap data visualization component for Adobe Flex
Stars: ✭ 22 (-8.33%)
Mutual labels:  ui-components
react-awesome-notifications
A beautiful fully customizable React + Redux notification system built with styled-components
Stars: ✭ 29 (+20.83%)
Mutual labels:  ui-components
wlui
wl-ui 精美易用的前端复杂组件解决方案。Beautiful and easy-to-use front-end complex component solution
Stars: ✭ 32 (+33.33%)
Mutual labels:  ui-components
CheckMarkView
UI view which draws programmatically a checkmark with different styles
Stars: ✭ 35 (+45.83%)
Mutual labels:  ui-components
native-kitchensink
📱 Playground for ReactiveSearch Native components
Stars: ✭ 46 (+91.67%)
Mutual labels:  ui-components
wonder-blocks
React components for Wonder Blocks design system.
Stars: ✭ 110 (+358.33%)
Mutual labels:  ui-components
react-simple-infinite-loading
A list that infinitely loads content as user scrolls down in React
Stars: ✭ 56 (+133.33%)
Mutual labels:  ui-components
anim search bar
A flutter package that has an animated search bar with loads of customization
Stars: ✭ 28 (+16.67%)
Mutual labels:  ui-components
business-hours-picker
A business hours picker and viewer for android
Stars: ✭ 31 (+29.17%)
Mutual labels:  ui-components
UnityTableView
Plugin for Unity 5.6 that implements a Table with an API inspired by Apple's UITableView
Stars: ✭ 27 (+12.5%)
Mutual labels:  uitableviewcell
awesome-cocoa
A curated list of awesome Cocoa controls for iOS, watchOS and macOS
Stars: ✭ 56 (+133.33%)
Mutual labels:  ui-components
evolution-ui
Cutting Edge UI Components for Modern Developers
Stars: ✭ 30 (+25%)
Mutual labels:  ui-components

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].