Luis Ascorbe

Results 7 comments of Luis Ascorbe

Having the same issue on a big project here, it: - It's a mix of swift and objc. - Uses CocoaPods. - Workspace and Target are the same name. Any...

Hey @RobertGummesson! - [x] Ensure that the compiler flags are added to the appropriate nodes (as per @gprasant's post). - [x] Ensure that what you are building matches the target...

I've come into this as well (having big compile times on all Cartography closures). Looks like function overload could be the cause ([`constrain` has various method overloads](https://github.com/robb/Cartography/blob/master/Cartography/Constrain.swift)). I've been thinking...

Isn't working... I had to use this (I'm using a UIPageControl): ``` CGRect frame = _gmGridView.frame; frame.origin.x = frame.size.width * page; frame.origin.y = 0; [_gmGridView scrollRectToVisible:frame animated:YES]; ```

What about `DecodingError`? Any (fast) workaround for that? :)

Weird, tried that and got an error, it works fine now tho. Thanks @nap-sam-dean! 🍻

What if the default implementations are available as a separate module? That way everyone can keep using them, and those of us who don't want a default impl, just don't...