回答編集履歴

2

コード修正

2019/04/08 07:02

投稿

f-miyu
f-miyu

スコア1625

test CHANGED
@@ -8,17 +8,13 @@
8
8
 
9
9
  {
10
10
 
11
- global::Xamarin.Forms.Forms.Init();
12
-
13
-
14
-
15
11
  new CustomNavigationRenderer(); //追加
16
12
 
17
13
 
18
14
 
15
+ global::Xamarin.Forms.Forms.Init();
16
+
19
17
  LoadApplication(new App());
20
-
21
-
22
18
 
23
19
  return base.FinishedLaunching(app, options);
24
20
 

1

追記

2019/04/08 07:01

投稿

f-miyu
f-miyu

スコア1625

test CHANGED
@@ -1,9 +1,27 @@
1
- `AppDelegate`の`FinishedLaunching`に、以下を加えてみてください。
1
+ `AppDelegate`の`FinishedLaunching`に、`new CustomNavigationRenderer();`を加えてみてください。
2
2
 
3
3
 
4
4
 
5
5
  ```C#
6
6
 
7
+ public override bool FinishedLaunching(UIApplication app, NSDictionary options)
8
+
9
+ {
10
+
11
+ global::Xamarin.Forms.Forms.Init();
12
+
13
+
14
+
7
- new CustomNavigationRenderer();
15
+ new CustomNavigationRenderer(); //追加
16
+
17
+
18
+
19
+ LoadApplication(new App());
20
+
21
+
22
+
23
+ return base.FinishedLaunching(app, options);
24
+
25
+ }
8
26
 
9
27
  ```