質問編集履歴

5

質疑の追加

2016/10/26 01:57

投稿

yukitoto
yukitoto

スコア53

test CHANGED
File without changes
test CHANGED
@@ -36,9 +36,43 @@
36
36
 
37
37
 
38
38
 
39
- #### 追記
39
+ ### 追記
40
40
 
41
+ #### TakeOneさんからの質問
42
+
43
+ sharedApplication().openURL(url!)
44
+
45
+ の行だけ削除したらSafariが起動されないだけでクラッシュしなくなるんですか
46
+
47
+
48
+
49
+ こちらはクラッシュ致しませんでした。
50
+
51
+
52
+
53
+ > openURLの実行によりアプリはバックグラウンド状態に移行しますから、その際にapplicationWillResignActive()やapplicationDidEnterBackground()が呼ばれます。
54
+
55
+ また、戻ってくる際にはapplicationWillEnterForeground()やapplicationDidBecomeActive()が呼ばれます。
56
+
57
+ > そのあたりに問題のある処理がないか確認した方がよいと思います。
58
+
59
+
60
+
61
+ こちらも現在行っていた処理をすべてなくしても同じ現象でした。
62
+
63
+ ちなみにapplicationWillEnterForeground()が呼ばれる前にクラッシュしております。
64
+
65
+
66
+
67
+ > また、[Window]-[Devices]でデハッグ中の端末を選択すると、端末のコンソールメッセージが表示されますから、それを確認すれば、何か見えてなかったものが見えてくるかもしれません。
68
+
69
+
70
+
71
+ コンソールで確認し、ログを取得出来たので追記させていただきました。
72
+
73
+
74
+
41
- デバイスログ
75
+ ####デバイスログ
42
76
 
43
77
  ##### Safariへの遷移時
44
78
 

4

追記への追記

2016/10/26 01:57

投稿

yukitoto
yukitoto

スコア53

test CHANGED
File without changes
test CHANGED
@@ -83,3 +83,7 @@
83
83
  Sep 4 09:33:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
84
84
 
85
85
  ```
86
+
87
+
88
+
89
+ ※時々`CoreAnimation: updates deferred for too long`というメッセージが表示されています。

3

デバイスログの追加

2016/09/04 00:36

投稿

yukitoto
yukitoto

スコア53

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,53 @@
33
33
 
34
34
 
35
35
  ![クラッシュした様子](0f59825e63fdac6029e3a1a052bec8ba.png)
36
+
37
+
38
+
39
+ #### 追記
40
+
41
+ デバイスログ
42
+
43
+ ##### Safariへの遷移時
44
+
45
+ ```
46
+
47
+ Sep 4 09:31:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
48
+
49
+ Sep 4 09:31:19 --- last message repeated 5 times ---
50
+
51
+ Sep 4 09:31:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 17314 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
52
+
53
+ Sep 4 09:31:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 53689 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
54
+
55
+ Sep 4 09:31:20 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
56
+
57
+ Sep 4 09:31:20 --- last message repeated 2 times ---
58
+
59
+ Sep 4 09:31:20 SpringBoard[30732]: [MPUSystemMediaControls] Updating supported commands for now playing application.
60
+
61
+ Sep 4 09:31:20 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
62
+
63
+ ```
64
+
65
+
66
+
67
+ ##### アプリへ戻ってくる時
68
+
69
+ ```
70
+
71
+ Sep 4 09:33:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
72
+
73
+ Sep 4 09:33:19 syslogd[30718]: ASL Sender Statistics
74
+
75
+ Sep 4 09:33:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
76
+
77
+ Sep 4 09:33:19 --- last message repeated 3 times ---
78
+
79
+ Sep 4 09:33:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 53689 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
80
+
81
+ Sep 4 09:33:19 SpringBoard[30732]: [MPUSystemMediaControls] Updating supported commands for now playing application.
82
+
83
+ Sep 4 09:33:19 assertiond[30736]: assertion failed: 15E65 13E230: assertiond + 15801 [3C808658-78EC-3950-A264-79A64E0E463B]: 0x1
84
+
85
+ ```

2

ミスの修正

2016/09/04 00:35

投稿

yukitoto
yukitoto

スコア53

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- )iOS8・Xcode7.3、swift2という環境でiOSアプリの開発を行っています。
1
+ iOS8・Xcode7.3、swift2という環境でiOSアプリの開発を行っています。
2
2
 
3
3
 
4
4
 
@@ -32,4 +32,4 @@
32
32
 
33
33
 
34
34
 
35
- ![クラッシュした様子](0f59825e63fdac6029e3a1a052bec8ba.png
35
+ ![クラッシュした様子](0f59825e63fdac6029e3a1a052bec8ba.png)

1

クラッシュした様子画像の追加

2016/09/03 22:40

投稿

yukitoto
yukitoto

スコア53

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- iOS8・Xcode7.3、swift2という環境でiOSアプリの開発を行っています。
1
+ )iOS8・Xcode7.3、swift2という環境でiOSアプリの開発を行っています。
2
2
 
3
3
 
4
4
 
@@ -29,3 +29,7 @@
29
29
 
30
30
 
31
31
  何卒宜しくお願い致します。
32
+
33
+
34
+
35
+ ![クラッシュした様子](0f59825e63fdac6029e3a1a052bec8ba.png