You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: