当我尝试访问AVFoundation中的相机设备时,我在运行iOS 10.1的iPad mini上运行该应用程序,应用程序在运行时崩溃,我得到错误:
dyld:未找到符号:_AVCaptureDeviceTypeBuiltInTelephotoCamera
参考自: /private/var/containers/Bundle/Application/B968A732-8216-421B-90E6-FC86E64A6862/pop.app/PlugIns/MessagesExtension.appex/MessagesExtension 预计在:dyld共享缓存中 /private/var/containers/Bundle/Application/B968A732-8216-421B-90E6-FC86E64A6862/pop.app/PlugIns/MessagesExtension.appex/MessagesExtension (LLDB)
即使这个类正在运行它也不会从应用程序启动崩溃。有谁知道这是为什么?这是我使用这些枚举的函数。
wv.setOnKeyListener(new OnKeyListener()
{
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
//This is the filter
if (event.getAction()!=KeyEvent.ACTION_DOWN)
return true;
switch (keyCode) {
case KeyEvent.KEYCODE_BACK:
finish();
Intent intent1 = new Intent(LinkActivity.this, MainActivity.class);
startActivity(intent1);
break;
}
return true;
}
});
感谢。