Open
Description
Due to some changes in Xcode6 beta4, the Swift example does not work out of the box.
A line like
var a = CGFloat(aFixedValue)
results in an error saying CGFloat is not convertible to UInt8. It can be fixed with an extra cast
var a = CGFloat(Uint(aFixedValue))
but I doubt this is the right solution in the long run
Metadata
Metadata
Assignees
Labels
No labels