質問編集履歴
3
Web View Controller Scene の Window を View に戻しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -465,3 +465,9 @@
|
|
465
465
|
(lldb)
|
466
466
|
|
467
467
|
```
|
468
|
+
|
469
|
+
|
470
|
+
|
471
|
+
スクリーンショットの Window となっている部分を View に直したら、エラーが直りました。貴重なお時間をたくさん割いていただきありがとうございました。
|
472
|
+
|
473
|
+

|
2
btと入力してみました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -411,3 +411,57 @@
|
|
411
411
|
というERRORが表示されるのですが、これがいけないのでしょうか?
|
412
412
|
|
413
413
|
毎回大変申し訳ありません。
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
btと打ち込んで出力されたログです。
|
418
|
+
|
419
|
+
```
|
420
|
+
|
421
|
+
(lldb) bt
|
422
|
+
|
423
|
+
* thread #1, queue = 'com.apple.main-thread', stop reason = EXC_BAD_ACCESS (code=1, address=0x408246e0)
|
424
|
+
|
425
|
+
frame #0: 0x1bc4cdc6 libobjc.A.dylib`objc_msgSend + 6
|
426
|
+
|
427
|
+
frame #1: 0x21bde1d6 UIKit`-[UIView(Hierarchy) removeFromSuperview] + 188
|
428
|
+
|
429
|
+
frame #2: 0x24e4db36 WebKit`-[WKContentView(WKInteraction) cleanupInteraction] + 326
|
430
|
+
|
431
|
+
frame #3: 0x24e4a398 WebKit`-[WKContentView dealloc] + 24
|
432
|
+
|
433
|
+
frame #4: 0x1bc4e14e libobjc.A.dylib`_object_remove_assocations + 478
|
434
|
+
|
435
|
+
frame #5: 0x1bc496b4 libobjc.A.dylib`objc_destructInstance + 42
|
436
|
+
|
437
|
+
frame #6: 0x1bc496cc libobjc.A.dylib`object_dispose + 14
|
438
|
+
|
439
|
+
frame #7: 0x1f832146 QuartzCore`-[CALayer dealloc] + 114
|
440
|
+
|
441
|
+
frame #8: 0x1f830b9c QuartzCore`CA::Layer::free_transaction(CA::Transaction*) + 136
|
442
|
+
|
443
|
+
frame #9: 0x1f7e0058 QuartzCore`CA::Transaction::commit() + 704
|
444
|
+
|
445
|
+
frame #10: 0x1f7e0b2e QuartzCore`CA::Transaction::observer_callback(__CFRunLoopObserver*, unsigned long, void*) + 162
|
446
|
+
|
447
|
+
frame #11: 0x1c973802 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 20
|
448
|
+
|
449
|
+
frame #12: 0x1c971a54 CoreFoundation`__CFRunLoopDoObservers + 282
|
450
|
+
|
451
|
+
frame #13: 0x1c972016 CoreFoundation`__CFRunLoopRun + 1358
|
452
|
+
|
453
|
+
frame #14: 0x1c8c51ae CoreFoundation`CFRunLoopRunSpecific + 470
|
454
|
+
|
455
|
+
frame #15: 0x1c8c4fd0 CoreFoundation`CFRunLoopRunInMode + 104
|
456
|
+
|
457
|
+
frame #16: 0x1e06fb40 GraphicsServices`GSEventRunModal + 80
|
458
|
+
|
459
|
+
frame #17: 0x21c46e12 UIKit`UIApplicationMain + 150
|
460
|
+
|
461
|
+
* frame #18: 0x000e686c Map`main at AppDelegate.swift:12
|
462
|
+
|
463
|
+
frame #19: 0x1c0b24ea libdyld.dylib`start + 2
|
464
|
+
|
465
|
+
(lldb)
|
466
|
+
|
467
|
+
```
|
1
実行エラーが発生して、上記表示がされます。
test
CHANGED
File without changes
|
test
CHANGED
@@ -385,3 +385,29 @@
|
|
385
385
|
|
386
386
|
|
387
387
|
長いソースになりましたが、これでも削除しました。大変申し訳ありませんが宜しくお願い致します。
|
388
|
+
|
389
|
+
|
390
|
+
|
391
|
+
エラー後の表示
|
392
|
+
|
393
|
+
```
|
394
|
+
|
395
|
+
class AppDelegate: UIResponder, UIApplicationDelegate { Thread1:EXC_BAT_ACCESS(code=1,address=0x3ed8a607)
|
396
|
+
|
397
|
+
```
|
398
|
+
|
399
|
+
|
400
|
+
|
401
|
+
実行エラーが発生する前は、
|
402
|
+
|
403
|
+
```
|
404
|
+
|
405
|
+
ERROR /BuildRoot/Library/Caches/com.apple.xbs/Sources/VectorKit/VectorKit-1230.34.9.30.27/GeoGL/GeoGL/GLCoreContext.cpp 1763: InfoLog SolidRibbonShader:
|
406
|
+
|
407
|
+
ERROR /BuildRoot/Library/Caches/com.apple.xbs/Sources/VectorKit/VectorKit-1230.34.9.30.27/GeoGL/GeoGL/GLCoreContext.cpp 1764: WARNING: Output of vertex shader 'v_gradient' not read by fragment shader
|
408
|
+
|
409
|
+
```
|
410
|
+
|
411
|
+
というERRORが表示されるのですが、これがいけないのでしょうか?
|
412
|
+
|
413
|
+
毎回大変申し訳ありません。
|