Xcode 8 beta 4 不再识别 Foundation 类AttributedString
。
我在这个简单的游乐场示例中复制了它:
//: Playground - noun: a place where people can play
import Foundation
let attrStr1 = NSAttributedString()
let attrStr2 = AttributedString() // Use of undeclared type 'AttributedString'
由于AttributedString
在较旧的 Xcode 8 Swift 3 beta 中可用,我想这是一个Foundation
需要修复的错误,而不是 Playground 中的一些源代码错误?