我最近将Xcode升级到7.2版,此后出现错误:var pEventIdsArray : Array = [""]
在viewDidLoad()
中,我正在使用self.pEventNamesAgoArray.removeAll()
。这是我收到Ambiguous reference to member removeAll
的错误的地方
最佳答案
只需执行self.pEventIdsArray = []
即可清空数组。
是pEventIdsArray还是pEventNamesAgoArray。检查它们是否相同。
关于ios - 在Swift 2.0中对成员'removeAll'的模糊引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34485315/