我必须在NSExpression中评估以下值。请帮助我。
let calculateExpression = NSExpression(format: "6(9*9)")
if let calculateConvertedValue = calculateExpression.expressionValueWithObject(nil, context: nil) as? NSNumber {
outputValue = calculateConvertedValue.stringValue
print("Output",outputValue)
}