質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -65,4 +65,15 @@
|
|
65
65
|
|
66
66
|
### 補足情報(FW/ツールのバージョンなど)
|
67
67
|
・Xcode9.4.1
|
68
|
-
・Swift4.1
|
68
|
+
・Swift4.1
|
69
|
+
|
70
|
+
###追記
|
71
|
+
|
72
|
+
```swift
|
73
|
+
let viewController = storyboard.instantiateViewController(withIdentifier: "Sample") as! SampleBaseView
|
74
|
+
let detail = viewController.childViewControllers[0] as! Tab1
|
75
|
+
detail.testText = "sampleString"
|
76
|
+
```
|
77
|
+
|
78
|
+
上記のようにやってみましたが下記のエラーになりました。
|
79
|
+
`libc++abi.dylib: terminating with uncaught exception of type NSException」`
|