如何在Swift中将Objc c Enum转换为NSValue

时间:2015-09-09 13:18:03

标签: ios objective-c swift

我正在尝试将一个Objective c Enum作为NSValue传递给一个类。

我正在使用Objective c我会这样做:

   NSValue *orderSide = [NSValue value:&side withObjCType:@encode(enum kOrder_side)];

我怎么能这样做很快?

2 个答案:

答案 0 :(得分:1)

试试这段代码:

document.execCommand('copy');

答案 1 :(得分:0)

试试这个行代码,它可以帮到你。

var orderSide: NSValue = NSValue.value(&side, withObjCType: )