Code that works w/ any iOS and Xcode 12, and also works w/ Xcode 13.3.1 and iOS15.4 and earlier....does not work with Xcode 13.3.1 and iOS15.
NSPredicate *myButtonPredicate = [NSPredicate predicateWithFormat:@"self.accessibilityLabel = %@",@"My Button"]; if ([arrayOfButtons filteredArrayUsingPredicate:myButtonPredicate].count == 0
I get a SIGABRT w/o any other debug info on the 2nd line of that code sample.
Did something change w/ NSPredicate/NSArray/NSPredicateSupport?