回答編集履歴

1

追記

2020/10/26 11:06

投稿

f-miyu
f-miyu

スコア1625

test CHANGED
@@ -15,3 +15,29 @@
15
15
  }
16
16
 
17
17
  ```
18
+
19
+
20
+
21
+ ### 追記
22
+
23
+
24
+
25
+ `CreateBuffer`は、`ViewWillAppear`のタイミングで呼ぶ様にしてみて下さい。
26
+
27
+
28
+
29
+ ```C#
30
+
31
+ public override void ViewWillAppear(bool animated)
32
+
33
+ {
34
+
35
+ base.ViewWillAppear(animated);
36
+
37
+
38
+
39
+ mMainView.CreateBuffer();
40
+
41
+ }
42
+
43
+ ```