我正在使用XMPPFramework,刚刚更新到3.7版,现在当我试图编译这一行时:
body.setStringValue(message)
它给了我这个错误:
Value of type 'DDXMLElement' has no member 'setStringValue'
我该怎么解决?
最佳答案
你可以用这个
body.stringValue = message
因为
body.setStringValue
在swift3
中不可用关于swift - DDXMLElement的奇怪问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40847748/