CFString转换为Swift 2.0中的kUTTypeImage的String& XCODE 7

时间:2015-09-04 22:12:13

标签: ios swift swift2

我在转换CFString时遇到错误。错误信息是:

  

无法指定类型' [CFString]'的值到#' [String]类型的值。

如何解决?

picker.sourceType = UIImagePickerControllerSourceType.Camera
picker.allowsEditing = false
picker.mediaTypes = [kUTTypeImage] //Error Message : Cannot assign a value of type '[CFString]' to a value of type '[String]'
picker.delegate = self
picker.modalPresentationStyle = .Popover
presentViewController(picker, animated: true, completion: nil)//

1 个答案:

答案 0 :(得分:10)

从头文件中:

public var mediaTypes: [String]
// default value is an array containing kUTTypeImage.

所以你实际上可以删除那一行。

但是如果你想保留它,你只需要明确表示你想要一个演员:

picker.mediaTypes = [kUTTypeImage as String]