dominicstop / react-native-ios-context-menu

A react-native component to use context menu's (UIMenu) on iOS 13/14+
MIT License
544 stars 25 forks source link

fix: build for macOS catalyst #54

Closed SamuelScheit closed 2 years ago

SamuelScheit commented 2 years ago

There are some iOS 16.0 availability checks, however they do not work for macOS catalyst. Which is why I added these checks:

#if !targetEnvironment(macCatalyst)

in front of #if swift(>=5.7) and @available(iOS 16, *) to be able to compile react-native apps for macOS catalyst

dominicstop commented 2 years ago

Hi! Thank you for the PR — I’ll add to the next release ✨