Adam Wulf
Adam Wulf
This is a strange one. It may take me a while to find the root cause, but in playing around with it I found that reversing the splitterPath with `bezierPathByReversingPath`...
Glad you found a way to get it to work. Can you post the splitter and splitting paths that don't work unless you make that 1 adjustment to the addLine...
awesome :) many thanks for this test case
This has been started at 11c159c958e on `debug`
Could you add a test and send a PR? It's hard to know what the issue might be without the exact paths causing the problem. thanks!
There's not an explicit union method. You can try using `intersectionWithPath:` and `differenceWithPath:` to build the union. ``` UIBezierPath* pathA; UIBezierPath* pathB; UIBezierPath* intersection = [pathA intersectionWithPath:pathB]; UIBezierPath* diffL =...
i've just pushed up an update that fixes some compiler issues and build settings. pull that down and retry. When I compile the app from this latest commit, it builds...
Make sure that you've opened the Xcode workspace, not just one of the project files. Open SimpleCloudKit.xcworkspace and it'll show both projects in the sidebar. Then it should know where...
Unfortunately there's not a good way to do that with Columnize. it's designed to fill content top to bottom, there's not really a good way to change that to left...
For the newsletter layout in Sample 9, the location of the footer is entirely dependent on your CSS, so you should be able to align it just fine with the...