0
在Xcode 7.0中完美運行的代碼現在抱怨出現了一個錯誤:在第二行的Xcode 7.3.1中模糊使用下標。在訪問從Obj-C橋接的二維數組時遇到下標的模糊使用
let ar = sender.draggingPasteboard().propertyListForType("ABLinkedPeopleUIDsPboardType") as! NSArray?
let uniqueID = ar![0][0] as! String
我明白,NSArray本身就被認爲是不好的做法,但是我需要做些什麼才能讓它編譯和運行?
你看過[這個?](http://stackoverflow.com/questions/33642059/ambiguous-use-of-subscript-in-swift) –