EurekaCommunity / SplitRow

A row for Eureka to put two rows side by side into the same UITableViewCell
MIT License
56 stars 27 forks source link

Carthage support? #29

Closed hungeric closed 5 years ago

hungeric commented 5 years ago

Instead of using Cocoapod, can we support Carthage?

marbetschar commented 5 years ago

@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
hungeric commented 5 years ago

@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?

marbetschar commented 5 years ago

@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 ;)

hungeric commented 5 years ago

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