我如何创建一个NSExpression
具有恒定值的PredicateEditor
.
例如:
leftExpression 应该是字符串“state”,rightExpression 应该是字符串“Germany”
我试过了:
NSExpression left = new NSExpression(NSExpressionType.ConstantValue);
left.SetValueForKey(new NSString("state"), new NSString("Germany"));
但这不起作用。程序停止无误!