我想通過NSDate找出數組的索引。通過NSDate查找數組的索引?
生病嘗試:
var sectionsInTable = [NSDate]()
let indexOfElement = sectionsInTable.indexOf(date) // where date is an NSDate in my sectionsInTable Array
print(indexOfElement)
但生病總是得到假
怎麼可能從數組中得到一個NSDate的指數?
在此先感謝。
如果您已將其初始化爲空,您爲什麼希望在'sectionsInTable'中查找日期? – WMios
這僅僅是一個例子。該數組中仍然存在一些NSDate()。 – derdida
'NSDate'對象是「精確」的。什麼包含'sectionsInTables'? NSDate對象,你想在同一天同一個小時?你可以使用'indexOfObjectPassingTest:'和'isDate:equalToDate:toUnitGranularity:'。 – Larme