iPhone app crashes on WebThread MPVolumeSlider(iPhone 应用程序在 WebThread MPVolumeSlider 上崩溃)
问题描述
问一个问题似乎很宽泛,但这很烦人,而且很难修复这个错误.
It seems like very broad to ask a question, but this is very annoying and difficult to fix the bug.
这是我从 Crashlytics 获得的 WebThread 崩溃日志.
Here's the crash log for WebThread which I got from Crashlytics.
Thread : Crashed: WebThread
0 libobjc.A.dylib 0x0000000193e97bd0 objc_msgSend + 16
1 UIKit 0x0000000187f65dd8 +[UIViewAnimationState popAnimationState] + 332
2 MediaPlayer 0x0000000185953358 -[MPVolumeSlider volumeController:volumeValueDidChange:] + 92
3 MediaPlayer 0x00000001859c5fc4 -[MPVolumeController updateVolumeValue] + 260
4 MediaPlayer 0x0000000185952cb0 -[MPVolumeSlider didMoveToSuperview] + 144
5 UIKit 0x0000000187f2c1dc -[UIView(Hierarchy) _postMovedFromSuperview:] + 484
6 UIKit 0x0000000187f37cbc -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1764
7 MediaPlayer 0x0000000185955f54 -[MPVolumeView _createSubviews] + 264
8 MediaPlayer 0x00000001859549d4 -[MPVolumeView _initWithStyle:] + 240
9 MediaPlayer 0x0000000185954a60 -[MPVolumeView initWithFrame:style:] + 88
10 WebCore 0x0000000191ba4684 -[WebMediaSessionHelper initWithCallback:] + 132
11 WebCore 0x0000000191ba3db8 WebCore::MediaSessionManageriOS::MediaSessionManageriOS() + 96
12 WebCore 0x0000000191ba3d28 WebCore::MediaSessionManager::sharedManager() + 56
13 WebCore 0x0000000191ba2890 WebCore::MediaSession::MediaSession(WebCore::MediaSessionClient&) + 44
14 WebCore 0x00000001916e8604 WebCore::HTMLMediaSession::create(WebCore::MediaSessionClient&) + 36
15 WebCore 0x00000001916d0fb0 WebCore::HTMLMediaElement::HTMLMediaElement(WebCore::QualifiedName const&, WebCore::Document&, bool) + 1100
16 WebCore 0x000000019170a2b4 WebCore::HTMLVideoElement::create(WebCore::QualifiedName const&, WebCore::Document&, bool) + 68
17 WebCore 0x00000001916bdd9c WebCore::videoConstructor(WebCore::QualifiedName const&, WebCore::Document&, WebCore::HTMLFormElement*, bool) + 92
我在开发过程中从未见过这种崩溃(如果我能用断点和控制台日志捕获它,我会很高兴),但只有在它上线时才会出现在用户面前.
I never seen this kind of crash during development(I would be very happy when I can catch it with breakpoint and console log), but only appears to users when it is on live.
只能由 crashlytics 报告.
Can be only reported by crashlytics.
可能的原因;
应用程序在启动时使用 MagicalRecord 并在后台从服务器获取数据.这使用多线程,当 webkit 使用 UIKit 部分和锁定时,另一个主线程似乎可以访问它.因此,我尝试删除所有 dispatch_sync 并将其更改为 dispatch_async 但在进行了几次功能调用后再次发生崩溃.
App uses MagicalRecord and get data from server in background when start up. This uses multi-thread, and when webkit is using UIKit part and locking, another main thread seems like access it. So I have tried to remove all dispatch_sync and changed it to dispatch_async but the crashes happens again after proceeding a few functional calls.
我想知道的是,为什么 WebCore 正在运行,而我从未在 UIWebView 上请求 MPVolumeController.
What I want to know is, why WebCore is running, and I never requested MPVolumeController on UIWebView.
即使出于某种原因它们可以在后台运行,为什么会崩溃?它经常发生,用户抱怨.
Even they can run on background for some reason, why it crashes? It is happening frequently and users complaint.
其他人有同样的问题吗?
Any others have same problem?
推荐答案
这个bug从iOS 8开始出现.
This bug occurred since iOS 8.
加载包含 audio
或 video
元素的 HTML 的 UIWebView 会随机崩溃.
UIWebView that loads HTML containing audio
or video
elements will crash randomly.
我是这样解决的:
@interface H5WebKitBugsManager : NSObject
+ (void)fixAllBugs;
@end
#import "H5WebKitBugsManager.h"
#import <objc/runtime.h>
void H5Swizzle(Class c, SEL orig, SEL new)
{
Method origMethod = class_getInstanceMethod(c, orig);
Method newMethod = class_getInstanceMethod(c, new);
if(class_addMethod(c, orig, method_getImplementation(newMethod), method_getTypeEncoding(newMethod))) {
class_replaceMethod(c, new, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
} else {
method_exchangeImplementations(origMethod, newMethod);
}
}
@implementation H5WebKitBugsManager
+ (void)fixAllBugs
{
[self fixBug_MediaPlayerVolumeView];
}
+ (void)fixBug_MediaPlayerVolumeView
{
CGFloat systemVersion = [UIDevice currentDevice].systemVersion.floatValue;
if (systemVersion < 8.0f || systemVersion > 9.1) {
// below ios version 8.0 has no VolumeView
return;
}
Class cls = NSClassFromString(@"WebMediaSessionHelper");
NSString *allocateVolumeView = @"allocateVolumeView";
SEL orig = NSSelectorFromString(allocateVolumeView);
SEL new = @selector(H5WKBMAllocateVolumeView);
Method newMethod = class_getInstanceMethod(self, new);
if(class_addMethod(cls, new, method_getImplementation(newMethod), method_getTypeEncoding(newMethod))) {
H5Swizzle(cls, orig, new);
}
}
- (void)H5WKBMAllocateVolumeView
{
// WebKit's MediaSessionManageriOS is a singleton,in MediaSessionManageriOS.m. svn version181,859.
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// must be dispatch in background thread
[self H5WKBMAllocateVolumeView];
});
});
}
@end
这篇关于iPhone 应用程序在 WebThread MPVolumeSlider 上崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone 应用程序在 WebThread MPVolumeSlider 上崩溃
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01