質問編集履歴

5

写真を追加

2017/12/27 14:19

投稿

tomo39-.
tomo39-.

スコア27

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,16 @@
1
1
  表題の件でバグを直したいため、どうやらOutletの接続がきれているみたいです。。。
2
+
3
+
4
+
5
+
6
+
7
+ ![イメージ説明](6ed351d942d04750d6a184734d65f9a6.png)
8
+
9
+
10
+
11
+ View Controllerの右クリックするとこうなります。
12
+
13
+
2
14
 
3
15
 
4
16
 

4

user interface?

2017/12/27 14:19

投稿

tomo39-.
tomo39-.

スコア27

test CHANGED
File without changes
test CHANGED
@@ -156,6 +156,26 @@
156
156
 
157
157
 
158
158
 
159
+ また、behaviorよりデバックの設定を変更すると
160
+
161
+ ```ここに言語を入力
162
+
163
+ ---
164
+
165
+ setUpUserInterface USER INTERFACE
166
+
167
+ (0.0, 0.0, 375.0, 667.0)
168
+
169
+ ---
170
+
171
+ (lldb)
159
172
 
160
173
 
174
+
175
+ ```
176
+
177
+
178
+
179
+ と出ました。
180
+
161
181
  よろしくお願いします。

3

2017/12/27 14:17

投稿

tomo39-.
tomo39-.

スコア27

test CHANGED
File without changes
test CHANGED
@@ -156,12 +156,6 @@
156
156
 
157
157
 
158
158
 
159
- ビルドしたときに、キュレーションアプリなどで使用される。
160
-
161
- メニューバーを表示させたいです。
162
-
163
-
164
-
165
159
 
166
160
 
167
161
  よろしくお願いします。

2

2017/12/27 12:00

投稿

tomo39-.
tomo39-.

スコア27

test CHANGED
File without changes
test CHANGED
@@ -162,8 +162,6 @@
162
162
 
163
163
 
164
164
 
165
- 対処方法を探しています。ご協力いただけないでしょうか?
166
-
167
165
 
168
166
 
169
167
  よろしくお願いします。

1

Thread1 Signal SIGABRT のエラー場所

2017/12/27 11:59

投稿

tomo39-.
tomo39-.

スコア27

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,114 @@
1
- 表題の件でバグを直したいため、どうやらOutletの接続がきれているみたいなので。。
1
+ 表題の件でバグを直したいため、どうやらOutletの接続がきれているみたいで。。
2
+
3
+
4
+
5
+ SIGNAL SIGABRTのバグはこちらです。
6
+
7
+
8
+
9
+ ```ここに言語を入力
10
+
11
+ import UIKit
12
+
13
+
14
+
15
+ @UIApplicationMain
16
+
17
+ class AppDelegate: UIResponder, UIApplicationDelegate {
18
+
19
+
20
+
21
+ var window: UIWindow?
22
+
23
+
24
+
25
+
26
+
27
+ func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
28
+
29
+ // Override point for customization after application launch.
30
+
31
+ return true
32
+
33
+ }
34
+
35
+
36
+
37
+ func applicationWillResignActive(application: UIApplication) {
38
+
39
+ // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
40
+
41
+ // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
42
+
43
+ }
44
+
45
+
46
+
47
+ func applicationDidEnterBackground(application: UIApplication) {
48
+
49
+ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
50
+
51
+ // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
52
+
53
+ }
54
+
55
+
56
+
57
+ func applicationWillEnterForeground(application: UIApplication) {
58
+
59
+ // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
60
+
61
+ }
62
+
63
+
64
+
65
+ func applicationDidBecomeActive(application: UIApplication) {
66
+
67
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
68
+
69
+ }
70
+
71
+
72
+
73
+ func applicationWillTerminate(application: UIApplication) {
74
+
75
+ // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
76
+
77
+ }
78
+
79
+
80
+
81
+
82
+
83
+ }
84
+
85
+
86
+
87
+
88
+
89
+ ```
90
+
91
+
92
+
93
+ エラーがこちらについてしまいました。
94
+
95
+
96
+
97
+ ```ここに言語を入力
98
+
99
+ class AppDelegate: UIResponder, UIApplicationDelegate {
100
+
101
+ ```
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
2
112
 
3
113
 
4
114