In Objective-C I was able to make a call like so, i.e. pass "no" options:
[string boundingRectWithSize:size options:0 attributes:attributes context:nil]
How can I tell a corresponding call in Swift to do the same. For instance, passing NSStringDrawingOptions(rawValue: 0)!
produces a runtime error.