我有一个发送短信的iPhone应用程序。现在我已经开始制作此应用的Apple Watch
版本了。
当我尝试导入<MessageUI/MessageUI.h>
时,它表示未找到它。我一直在阅读并发现MessageUI
不是watchOS
的可用框架,但我发现您可以使用WatchConnectivity
使用不受支持的框架。我的问题是我发现的所有示例都是快速的,我正在使用Objective-C
,我的问题是我如何使用WatchConnectivity
来使用MessageUI
和/或是否有其他方式来发送通过watchOS
发送短信?
答案 0 :(得分:-1)
不能直接通过watchOS
发送短信,我们没有MessageUI
框架支持。但是,使用WatchConnectivity
将消息文本从Watch
发送到iPhone
,然后在电话上完成剩下的工作。但是,当应用程序位于background
并且从监视收到消息时,存在限制。
观看
if([WCSession isSupported]) {
WCSession *session = [WCSession defaultSession];
session.delegate = self;
[session activateSession];
[session sendMessage:[NSDictionary dictionaryWithObject:@"message text here" forKey:@"text"]
replyHandler:^(NSDictionary *reply) {
//handle reply from iPhone app here
}
errorHandler:^(NSError *error) {
//catch any errors here
}];
}
在iPhone上
- (void)session:(nonnull WCSession *)session didReceiveMessage:(nonnull NSDictionary<NSString *,id> *)message replyHandler:(nonnull void (^)(NSDictionary<NSString *,id> * __nonnull))replyHandler {
//--Message UI code here
}