Seems to be working in iOS 14.4.
Post
Replies
Boosts
Views
Activity
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"]);
}];
would love a solution that would also work for iPad split-ui view...
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...