0

I am have an app and in the iPhone app, we use MessageUI Framework, but when I try to add it to my Apple Watch Extension InterfaceController.h file like so:

#import <MessageUI/MessageUI.h> 

I get this error:

'MessageUI/MessageUI.h' file not found

Does watchOS not support MessageUI ? and do I have readd the framework again?

user979331
  • 11,039
  • 73
  • 223
  • 418

1 Answers1

0

WatchOS 2 does not support many of the standard frameworks found on iOS (including MessageUI). If you wish to do something more intensive that requires the need of frameworks available only on iOS, then you can use watch connectivity.

I asked this question a while ago, about a different framework, but the same idea applies: How to reference non-supported frameworks in Watch OS 2

Community
  • 1
  • 1
modesitt
  • 7,052
  • 2
  • 34
  • 64