All Projects → bcylin → Quicktableviewcontroller

bcylin / Quicktableviewcontroller

Licence: mit
A simple way to create a UITableView for settings in Swift.

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Quicktableviewcontroller

Aiforms.settingsview
SettingsView for Xamarin.Forms
Stars: ✭ 274 (-34.29%)
Mutual labels:  settings, tableview
Android Extensions
An Android library with modules to quickly bootstrap an Android application.
Stars: ✭ 356 (-14.63%)
Mutual labels:  tableview
Laravel Setting
Persistent settings package for Laravel
Stars: ✭ 278 (-33.33%)
Mutual labels:  settings
Laravel Settings
Store strongly typed application settings
Stars: ✭ 345 (-17.27%)
Mutual labels:  settings
Senparc.co2net
支持 .NET Framework & .NET Core 的公共基础扩展库
Stars: ✭ 289 (-30.7%)
Mutual labels:  settings
Buffer
Swift μ-framework for efficient array diffs and datasource adapters.
Stars: ✭ 349 (-16.31%)
Mutual labels:  tableview
Dry Configurable
A simple mixin to make Ruby classes configurable
Stars: ✭ 280 (-32.85%)
Mutual labels:  settings
Fuzzdata
Fuzzing resources for feeding various fuzzers with input. 🔧
Stars: ✭ 376 (-9.83%)
Mutual labels:  settings
Flutter Settings Ui
Create native settings for Flutter app in a minutes.
Stars: ✭ 363 (-12.95%)
Mutual labels:  settings
Togglebuttongroup
A group of flowable toggle buttons, with multiple / single selection support and button customization.
Stars: ✭ 343 (-17.75%)
Mutual labels:  radio-buttons
Oycountdownmanager
在cell中使用倒计时的处理方法, 全局使用一个NSTimer对象, 支持单列表.多列表.多页面.分页列表使用
Stars: ✭ 317 (-23.98%)
Mutual labels:  tableview
React Tabulator
React Tabulator is based on tabulator - a JS table library with many advanced features.
Stars: ✭ 295 (-29.26%)
Mutual labels:  tableview
Segmentedbutton
Segmented Control with animation for Android API 12+
Stars: ✭ 352 (-15.59%)
Mutual labels:  radio-buttons
User.js
Firefox privacy, security and anti-tracking: a comprehensive user.js template for configuration and hardening
Stars: ✭ 4,404 (+956.12%)
Mutual labels:  settings
Xamarin.forms.inputkit
CheckBox, Radio Button, Labeled Slider, Dropdowns etc.
Stars: ✭ 372 (-10.79%)
Mutual labels:  radio-buttons
Expytableview
Make your table view expandable just by implementing one method.
Stars: ✭ 348 (-16.55%)
Mutual labels:  tableview
Wdisplays
GUI display configurator for wlroots compositors
Stars: ✭ 302 (-27.58%)
Mutual labels:  settings
Laravel Model Settings
Model Settings for your Laravel app
Stars: ✭ 409 (-1.92%)
Mutual labels:  settings
Ezplayer
基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。
Stars: ✭ 377 (-9.59%)
Mutual labels:  tableview
React Native Tableview Simple
Flexible and lightweight React Native component for UITableView made with pure CSS
Stars: ✭ 357 (-14.39%)
Mutual labels:  tableview

QuickTableViewController

GitHub Actions Codecov Carthage compatible CocoaPods Compatible Platform Swift 5

A simple way to create a table view for settings, including:

  • Table view cells with UISwitch
  • Table view cells with center aligned text for tap actions
  • A section that provides mutually exclusive options
  • Actions performed when the row reacts to the user interaction
  • Easy to specify table view cell image, cell style and accessory type

Usage

Set up tableContents in viewDidLoad:

import QuickTableViewController

final class ViewController: QuickTableViewController {

  override func viewDidLoad() {
    super.viewDidLoad()

    tableContents = [
      Section(title: "Switch", rows: [
        SwitchRow(text: "Setting 1", switchValue: true, action: { _ in }),
        SwitchRow(text: "Setting 2", switchValue: false, action: { _ in })
      ]),

      Section(title: "Tap Action", rows: [
        TapActionRow(text: "Tap action", action: { [weak self] in self?.showAlert($0) })
      ]),

      Section(title: "Navigation", rows: [
        NavigationRow(text: "CellStyle.default", detailText: .none, icon: .named("gear")),
        NavigationRow(text: "CellStyle", detailText: .subtitle(".subtitle"), icon: .named("globe")),
        NavigationRow(text: "CellStyle", detailText: .value1(".value1"), icon: .named("time"), action: { _ in }),
        NavigationRow(text: "CellStyle", detailText: .value2(".value2"))
      ], footer: "UITableViewCellStyle.Value2 hides the image view."),

      RadioSection(title: "Radio Buttons", options: [
        OptionRow(text: "Option 1", isSelected: true, action: didToggleSelection()),
        OptionRow(text: "Option 2", isSelected: false, action: didToggleSelection()),
        OptionRow(text: "Option 3", isSelected: false, action: didToggleSelection())
      ], footer: "See RadioSection for more details.")
    ]
  }

  // MARK: - Actions

  private func showAlert(_ sender: Row) {
    // ...
  }

  private func didToggleSelection() -> (Row) -> Void {
    return { [weak self] row in
      // ...
    }
  }

}

NavigationRow

Detail Text Styles

NavigationRow(text: "UITableViewCellStyle.default", detailText: .none)
NavigationRow(text: "UITableViewCellStyle", detailText: .subtitle(".subtitle")
NavigationRow(text: "UITableViewCellStyle", detailText: .value1(".value1")
NavigationRow(text: "UITableViewCellStyle", detailText: .value2(".value2"))

Subtitle and the initializers with title/subtitle are deprecated and will be removed in v2.0.0.

Accessory Type

  • The NavigationRow shows with different accessory types based on the action and accessoryButtonAction closures:
var accessoryType: UITableViewCell.AccessoryType {
  switch (action, accessoryButtonAction) {
  case (nil, nil):      return .none
  case (.some, nil):    return .disclosureIndicator
  case (nil, .some):    return .detailButton
  case (.some, .some):  return .detailDisclosureButton
  }
}
  • The action will be invoked when the table view cell is selected.
  • The accessoryButtonAction will be invoked when the accessory button is selected.

Images

enum Icon {
  case named(String)
  case image(UIImage)
  case images(normal: UIImage, highlighted: UIImage)
}
  • Images in table view cells can be set by specifying the icon of each row.
  • Table view cells in UITableViewCellStyle.value2 will not show the image view.

SwitchRow

  • A SwitchRow is representing a table view cell with a UISwitch as its accessoryView.
  • The action will be invoked when the switch value changes.

TapActionRow

  • A TapActionRow is representing a button-like table view cell.
  • The action will be invoked when the table view cell is selected.
  • The icon, detail text, and accessory type are disabled in TapActionRow.

OptionRow

  • An OptionRow is representing a table view cell with .checkmark.
  • The action will be invoked when the selected state is toggled.
let didToggleSelection: (Row) -> Void = { [weak self] in
  if let option = $0 as? OptionRowCompatible, option.isSelected {
    // to exclude the event where the option is toggled off
  }
}

RadioSection

  • RadioSection allows only one selected option at a time.
  • Setting alwaysSelectsOneOption to true will keep one of the options selected.
  • OptionRow can also be used with Section for multiple selections.

Customization

Rows

All rows must conform to Row and RowStyle. Additional interface to work with specific types of rows are represented as different protocols:

  • NavigationRowCompatible
  • OptionRowCompatible
  • SwitchRowCompatible
  • TapActionRowCompatible

Cell Classes

A customized table view cell type can be specified to rows during initialization.

// Default is UITableViewCell.
NavigationRow<CustomCell>(text: "Navigation", detailText: .none)

// Default is SwitchCell.
SwitchRow<CustomSwitchCell>(text: "Switch", switchValue: true, action: { _ in })

// Default is TapActionCell.
TapActionRow<CustomTapActionCell>(text: "Tap", action: { _ in })

// Default is UITableViewCell.
OptionRow<CustomOptionCell>(text: "Option", isSelected: true, action: { _ in })

Since the rows carry different cell types, they can be matched using either the concrete types or the related protocol:

let action: (Row) -> Void = {
  switch $0 {
  case let option as OptionRow<CustomOptionCell>:
    // only matches the option rows with a specific cell type
  case let option as OptionRowCompatible:
    // matches all option rows
  default:
    break
  }
}

Overwrite Default Configuration

You can use register(_:forCellReuseIdentifier:) to specify custom cell types for the table view to use. See CustomizationViewController for the cell reuse identifiers of different rows.

Table view cell classes that conform to Configurable can take the customization during tableView(_:cellForRowAt:):

protocol Configurable {
  func configure(with row: Row & RowStyle)
}

Additional setups can also be added to each row using the customize closure:

protocol RowStyle {
  var customize: ((UITableViewCell, Row & RowStyle) -> Void)? { get }
}

The customize closure overwrites the Configurable setup.

UIAppearance

As discussed in issue #12, UIAppearance customization works when the cell is dequeued from the storyboard. One way to work around this is to register nib objects to the table view. Check out AppearanceViewController for the setup.

tvOS Differences

  • UISwitch is replaced by a checkmark in SwitchCell.
  • TapActionCell does not use center aligned text.
  • NavigationRow.accessoryButtonAction is not available.
  • Cell image view's left margin is 0.

Limitation

When to use QuickTableViewController?

QuickTableViewController is good for presenting static table contents, where the sections and rows don't change dynamically after viewDidLoad.

It's possible to update the table contents by replacing a specific section or row. Using different styles on each row requires additional configuration as described in the Customization section.

When not to use it?

QuickTableViewController is not designed for inserting and deleting rows. It doesn't handle table view reload animation either. If your table view needs to update dynamically, you might want to consider other solutions such as IGListKit.

Documentation

Requirements

Pre 1.0 versions
QuickTableViewController iOS tvOS Xcode Swift
~> 0.1.0 8.0+ - 6.4 1.2
~> 0.2.0 8.0+ - 7.0 2.0
~> 0.3.0 8.0+ - 7.3 2.2
~> 0.4.0 8.0+ - 8.0 2.3
~> 0.5.0 8.0+ - 8.0 3.0
~> 0.6.0 8.0+ - 8.3 3.1
~> 0.7.0 8.0+ - 9.0 3.2
~> 0.8.0 8.0+ - 9.1 4.0
~> 0.9.0 8.0+ - 9.3 4.1

QuickTableViewController iOS tvOS Xcode Swift
~> 1.0.0 8.0+ 9.0+ 9.4 4.1
~> 1.1.0 8.0+ 9.0+ 10.1 4.2
~> 1.2.0 8.0+ 9.0+ 10.2 5.0
~> 1.3.0 9.0+ 9.0+ 11.7 5.2

Installation

Use Swift Package Manager

Follow the instructions at Adding Package Dependencies to Your App and use version v1.2.1 or later. (requires Xcode 11)

Use CocoaPods

Create a Podfile with the following specification and run pod install.

platform :ios, '9.0'
use_frameworks!

pod 'QuickTableViewController'

Use Carthage

Create a Cartfile with the following specification and run carthage update QuickTableViewController. Follow the instructions to add the framework to your project.

github "bcylin/QuickTableViewController"

Xcode 12 workaround Guide: https://github.com/Carthage/Carthage/blob/master/Documentation/Xcode12Workaround.mdx

Use Git Submodule

git submodule add -b master [email protected]:bcylin/QuickTableViewController.git Dependencies/QuickTableViewController
  • Drag QuickTableViewController.xcodeproj to your app project as a subproject.
  • On your application target's Build Phases settings tab, add QuickTableViewController-iOS to Target Dependencies.

License

QuickTableViewController is released under the MIT license. See LICENSE for more details. Image source: iconmonstr.

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].