CocoaBob

Results 9 comments of CocoaBob

Hello, The original author, **Riley Testut**, has abandoned this project, and switched to a new project called **Delta** about 5 years ago, and **Delta** works much better than **GBA4iOS**, please...

I changed the following method to return at least 1 layout attribute, and it looks like it's working. ``` fileprivate func layoutAttributes(forItemsInLineWith layoutAttributes: UICollectionViewLayoutAttributes) -> [UICollectionViewLayoutAttributes] { guard let lineWidth...

Does your folder look like this? ![](https://user-images.githubusercontent.com/489666/30116372-59b815a8-92eb-11e7-9136-bb2ec1c253a2.png)

@neutrum I don't know how you imported OpenCV, actually we only need to download the version 3.2 from [here](http://opencv.org/releases.html) and simply copy the binary file `opencv2` (140.8MB) to the ARuler...

@neutrum Strange, it was already there when we clone/download the project. ![](https://user-images.githubusercontent.com/489666/30117775-3de02b28-92ef-11e7-81e0-5f29c82ada91.png)

Hi, Actually that's [LFS](https://git-lfs.github.com/) as GitHub doesn't accept files larger than 100MB. You need to download the OpenCV package ([v3.2.0](http://opencv.org/releases.html)) and replace the file by your self. If you use...

As they are regex strings, we can add `begin` & `end` symbols in router paths, to make sure they are matched exactly. For example: - `^/some/path$` - `^/some/path/specific$`

The positions of arrows is configured in the system preferences and it's a global setting, users can configure that with the following commands: defaults write "Apple Global Domain" AppleScrollBarVariant DoubleBoth...

OK, I found the instant method called - (NSScrollArrowPosition)arrowsPosition which is included in the Mac OS SDK, I think you can override it in your subclass.