Skip to content

A row for Eureka to put two rows side by side into the same UITableViewCell

License

Notifications You must be signed in to change notification settings

elgartoinf/SplitRow

 
 

Repository files navigation

SplitRow

A row for Eureka to put two rows side by side into the same UITableViewCell.

Platform iOS Swift 4 compatible Carthage compatible CocoaPods compatible License: MIT

By MANDELKIND.

Contents

Introduction

SplitRow is a custom row for Eureka designed to put two rows side by side into the same UITableViewCell.

Usage

import SplitRow

class ViewController: FormViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        form +++ Section()
            <<< SplitRow<PushRow<String>,TextRow>(){
		            $0.rowLeft = PushRow<String>(){
            			$0.selectorTitle = "E-Mail"
            			$0.options = ["Private","Work","Others"]
            		}
					
            		$0.rowRight = TextRow(){
            			$0.placeholder = "E-Mail"
            		}
				
        	}.onChange{
        		print("SplitRow.onChange:","left:",$0.value?.left,"right:",$0.value?.right)
        	}
    }
}

Requirements

  • iOS 9.0+
  • Xcode 9.0+
  • Eureka ~> 4.1

Getting involved

  • If you want to contribute please feel free to submit pull requests.
  • If you have a feature request please open an issue.

Author

About

A row for Eureka to put two rows side by side into the same UITableViewCell

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 92.2%
  • Ruby 5.5%
  • Objective-C 2.3%