Although [INImage imageWithUIImage:] method is documented, it doesn't exist in the actual framework (iOS 15)!
INImage imageWithUIImage: doesn't exist
Add a Comment
Although [INImage imageWithUIImage:] method is documented, it doesn't exist in the actual framework (iOS 15)!
I agree!
imageWithCGImage also seems to be missing.
However, imageWithImageData seems to be available, so you could try calling that, with the data from your UIImage?
(e.g. using UIImagePNGRepresentation)
Xcode 13.1 (13A1030d)
This method is implemented in the IntentsUI framework. Make sure you are importing that.
Thanks, that seems to be it, I imported "Intents", but when I also imported "IntentsUI", the extra methods showed up! Do you see that @yankat73?