복붙노트

[SWIFT] 스위프트 - 체크 배열 속성 요소가있는 경우에 [중복]

SWIFT

스위프트 - 체크 배열 속성 요소가있는 경우에 [중복]

해결법


  1. 1.예,

    예,

    if things.contains(where: { $0.someProperty == "nameToMatch" }) {
         // found
    } else {
         // not
    }
    
  2. from https://stackoverflow.com/questions/37988431/swift-check-if-array-contains-element-with-property by cc-by-sa and MIT license