EurekaCommunity/SplitRow

Carthage support?

hungeric opened this issue · 4 comments

Instead of using Cocoapod, can we support Carthage?

@hungeric SplitRow supports Cocoapods as well as Carthage. Just put the following into your Cartfile and your ready to go:

github "EurekaCommunity/SplitRow" ~> 1.2.1

@marbetschar Thanks, it wasn't in the .readme so I thought it only supported pods.
Quick question, was there a reason why you used a tableview instead of just use a single view with 2 sections?

@hungeric the table view is used because of the way Eureka works internally. It’s Cell functionalities are tightly coupled to a UITableViewCell. Therefore I found it to be best to stick to what’s there in favour of an easy implementation. That’s why I used TableView.

Improvements always welcome ;)

@marbetschar thank you for your response. I was just curious, i see your point now. this is a great extension to Eureka, I appreciate and applaud for your effort in this.