DOUAudioStreamer
DOUAudioStreamer copied to clipboard
手机内存空间不够了的情况会crash
[[NSFileHandle fileHandleForWritingAtPath:_cachedPath] truncateFileAtOffset:_expectedLength];
Exactly the same crash!
Exception message:
exception NSException * name:@"NSFileHandleOperationException" reason:@"*** -[NSConcreteFileHandle truncateFileAtOffset:]: No space left on device" 0x170d2560
And use @try can avoid this crash.
@try {
[[NSFileHandle fileHandleForWritingAtPath:_cachedPath] truncateFileAtOffset:_expectedLength];
}
@catch (NSException *exception) {
// or use NSFileHandleOperationException instead of NSException
NSLog(@"%@",exception.reason);
}