I am trying to check if a specific item (value of a property) exists in a array of objects, but could not find out any solution. Please let me know, what i am missing here.<
//Swift 4.2
if objarray.contains(where: { $0.id == 1 }) { // print("1 exists in the array") } else { // print("1 does not exists in the array") }