Ash Furrow

Results 267 comments of Ash Furrow

Hmm, not sure. That command is actually a series of commands: - `mkdir -p '/Users/rishi/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/danger-swiftlint-0.24.2/ext/swiftlint/bin'` - `curl -s -L https://github.com/realm/SwiftLint/releases/download/0.39.1/portable_swiftlint.zip -o portable_swiftlint.zip` - `unzip -q portable_swiftlint.zip -d '/Users/rishi/.rbenv/versions/2.5.0/lib/ruby/gems/2.5.0/gems/danger-swiftlint-0.24.2/ext/swiftlint/bin'` - `rm...

That's so weird, I'm not really sure what to tell you. Can you try following the SwiftLint instructions for installing and let me know if they succeed? I really don't...

What version of Xcode/Swift are you using? I haven't updated this tutorial for Swift 3 yet. I'll open an issue.

Sorry, I haven't had time to update this to Swift 3 yet. It looks like the `ReviewViewController` doesn't conform to the delegate/datasource protocols. Can you double-check that?

Great question! I [did this once before](https://github.com/ashfurrow/AFTabledCollectionView/blob/50b9ab372384bcb6d2188913067a321a4ca6c611/AFTabledCollectionView/AFIndexedCollectionView.h), basically I just subclassed `UICollectionView` to add a property to store the index (before I used tag). You could use the same technique...

Hi there, you can customize each cell by using the collection view data source functions. Same for customizing the number of cells in each row. You can read more about...

The error suggests that the table view cell is the data source of the collection view. I'd recommend using the ViewController instead: `class ViewController: UIViewController, UITableViewDataSource, UICollectionViewDataSource`

It's hard to say without the project in front of me. These kinds of problems are common when you're first learning a new programming technique like the one I explained...

Interesting – so you're thinking like if someone added a new `// swiftlint: disable ...` then the plugin would add a note to the PR? That's an interesting idea –...