親デバイスから Apple Watch にファイルを送信する際に問題が発生しています。場合によっては、ファイルが通過して完全に解析されることがあります。それ以外の場合は、ファイル転送を開始しますが、失敗session:(WCSession *)session didReceiveFile:(WCSessionFile *)file
し、Apple Watch でメソッドを実行することさえありません。
親デバイスのコードは次のとおりです。
- (void)sendLiveAudioRecording
{
NSError *moveError;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSURL *groupURL = [fileManager containerURLForSecurityApplicationGroupIdentifier: @"group.myCompany.myApp"];
NSURL *permanentURL = [groupURL URLByAppendingPathComponent: @"PhoneToWatch.mp4"];
[FileSystem_Helper removeFile: [permanentURL path]];
[fileManager moveItemAtURL: [self fileURL] toURL: permanentURL error: &moveError];
if (!moveError)
{
if ([WCSession isSupported])
{
[[WCSession defaultSession] setDelegate: self];
[[WCSession defaultSession] activateSession];
if ([[WCSession defaultSession] isReachable])
{
NSLog(@"File Is Being Transferred: %@", [permanentURL path]);
[[WCSession defaultSession] transferFile: permanentURL metadata: nil];
}
else
{
[self createAlertWithTitle: @"Error" andMessage: @"WCSession Not Reachable"];
}
}
else
{
[self createAlertWithTitle: @"Error" andMessage: @"WCSession Not Supported"];
}
}
else
{
NSLog(@"%@", [moveError localizedDescription]);
}
}
Apple Watch のコードは次のとおりです。
-(void) session:(WCSession *)session didReceiveFile:(WCSessionFile *)file
{
NSData *fileData = [NSData dataWithContentsOfURL: [file fileURL]];
WKAudioFileAsset *asset = [WKAudioFileAsset assetWithURL: [file fileURL]];
NSURL *fileLocation = [FileSystem_Helper writeAudioToAppGroupsWithData: fileData withName: @"FromPhone.mp4"];
NSLog(@"%@", [file fileURL]);
NSLog(@"%@", [fileLocation path]);
[FileSystem_Helper removeFile: [[file fileURL] path]];
NSError *writingError;
if (!writingError)
{
[self playURL: fileLocation withDuration: [asset duration]];
}
else
{
[WKAlertViewController_Helper showWKAlertControllerWithTitle: @"Audio Receive Failed" andMessage: [writingError localizedDescription] andButtonTitle: @"Ok" onController: self];
}
}
コード自体と関係があるかどうかさえわかりません。ファイル転送が時々失敗すると思いますが、デバッグするためにエラーを出力する場所が見つかりません。
ここで誰かが私に洞察を与えることができますか?
iOS 9.2 && WatchOS 2.1
[FileSystem_Helper removeFile: (NSString *)filePath] のコードは次のとおりです。
+ (void) removeFile: (NSString *)filePath
{
NSFileManager *fileManager = [NSFileManager defaultManager];
if ([fileManager fileExistsAtPath: filePath])
{
NSError *error;
if (![fileManager removeItemAtPath: filePath error:&error])
{
NSLog(@"Error removing file: %@", error);
}
}
}
[FileSystem_Helper writeAudioToAppGroupsWithData] は次のとおりです。
+ (void)writeAudioToAppGroupsWithData: (NSData *)audioData withName: (NSString *)name
{
// Writing the audio data to the App Groups
NSURL *URL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier: @"group.myCompany.myApp"];
NSURL *containerURL = [URL URLByAppendingPathComponent: name];
[audioData writeToURL: containerURL atomically: YES];
}