I am searching a value of a key in Dictionary Array in this way.
if let result = self.lasrIDArray.flatMap({$0["\(self.selectedTitle)"]}).first {
print("-------RESULT------\(result)") //->title of the other
}
But wat I want to do is take the index of this result contains object.
How can I do that?