Post

Replies

Boosts

Views

Activity

Reply to Xcode 13.3.1/iOS15.5 filteredArrayUsingPredicate: Crash
We were able to work around this issue by using predicateWithBlock:       NSPredicate * myButtonPredicate = [NSPredicate predicateWithBlock:^BOOL(id _Nullable evaluatedObject, NSDictionary<NSString *,id> * _Nullable bindings) {         return ([evaluatedObject isKindOfClass:UIBarButtonItem.class] && [((UIBarButtonItem *)evaluatedObject).accessibilityLabel isEqualToString:@"My Button"]);       }];
May ’22
Reply to How to avoid master from popping itself?
I'm seeing the same, any updates? I was also able to reproduce by updating the Scrumdinger Tutorial and adding a 4th row to ScrumsView.swift             NavigationLink(destination: AllScrumsView(scrums: scrums)) {                 CardView(scrum: DailyScrum(id: UUID(), title: "All Scrums", attendees: [], lengthInMinutes: 0, theme: .lavender))             }             .isDetailLink(false) And AllScrumsView.swift is similar to ScrumsView.swift I just created a Feedback bug...
May ’22