Rob Visentin
Rob Visentin
I'm encountering this same issue in version 8.0.3. The crash is caused by this implicitly unwrapped optional in `JTACMonthView.swift:115`: ``` // Configuration parameters from the dataSource var _cachedConfiguration: ConfigurationParameters! ```...
> this happened in production mode or in development? > And how did it happen? Production build. In my comment above I describe why the crash occurred, but since `_cachedConfiguration`...
I'm also seeing this issue on v8.0.3. To test I implemented the select and deselect delegate callbacks: ``` func calendar(_ calendar: JTACMonthView, didSelectDate date: Date, cell: JTACDayCell?, cellState: CellState, indexPath:...
Looks like there's a priority issue with the `~` operator. This compiles fine: ```swift view.topAnchor == container.topAnchor ~ 1 ```
Interesting that this is the first time a multiplier is supported for a spacing constraint. Do we know if a multiplier version of all spacing constraints will be available in...
Addressed in #42
I agree with @ZevEisenberg that the expression format should be enforced. I don't think there's a strong use case for the distributive property when building layout constraints, except in contrived...
Reopened against `master`
This will need a bit of work to support Swift 4
Also, it looks like `transformer` is `internal` on `Transform`, so they can't be applied manually. This should probably be public