将Swift Dictionary转换为NSDictionary

前端之家收集整理的这篇文章主要介绍了将Swift Dictionary转换为NSDictionary前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个 Swift Dictionary对象
  1. var params = ["first_name": firstNameTextField.text,"last_name": lastNameTextField.text,"company": companyTextField.text,"email_address": emailTextField.text,"phone_number": phoneTextField.text]

接下来,我有ObjC框架,我连接到我的Swift应用程序.
里面有一个属性对象

  1. @property (nonatomic,retain) NSMutableDictionary *fields;

我试图以这种方式分配它

  1. object.fields = params

并得到一个错误

  1. Cannot convert the expression's type '()' to type 'NSMutableDictionary!'

我也试过这样做

  1. var params = ["first_name": firstNameTextField.text,"phone_number": pnoneTextField.text].mutableCopy() as NSMutableDictionary
  2.  
  3. object.fields = params

编译得很好,但我遇到了运行时错误

  1. *** Terminating app due to uncaught exception 'NSInvalidArgumentException',reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]:
  2. attempt to insert nil object from objects[0]'

我打印了所有字段,但它们不是零:

  1. println(firstNameTextField.text)
  2. println(lastNameTextField.text)
  3. println(companyTextField.text)
  4. println(emailTextField.text)
  5. println(pnoneTextField.text)
  6.  
  7. ...
  8.  
  9. 1
  10. 2
  11. 3
  12. 5
  13. 4

有任何想法吗?

尝试parms.bridgeToObjectiveC().但是,这可能会给你一个NSDictionary而不是NSMutableDictionary.

猜你在找的Swift相关文章