We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
问题文件:HJDanmakuView 方法:visibleDanmakuAgents 问题可能性的原因:弹幕数据读取抢夺死锁 目前我解决办法:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题文件:HJDanmakuView
方法:visibleDanmakuAgents
问题可能性的原因:弹幕数据读取抢夺死锁
目前我解决办法:
@synchronized (self) {
return [NSArray arrayWithArray:self.renderingDanmakus];
}
// __block NSArray *renderingDanmakus = nil;
// dispatch_sync(_renderQueue, ^{
// renderingDanmakus = [NSArray arrayWithArray:self.renderingDanmakus];
// });
// return renderingDanmakus;
}
The text was updated successfully, but these errors were encountered: