質問編集履歴
2
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,65 @@
|
|
13
13
|
(lldb)
|
14
14
|
|
15
15
|
```
|
16
|
+
|
17
|
+
```Swift
|
18
|
+
|
19
|
+
//インタースティシャル広告のセル
|
20
|
+
|
21
|
+
let cell = tableView.dequeueReusableCell(withIdentifier: "BannerCell", for: indexPath)
|
22
|
+
|
23
|
+
let bannerView = cell.viewWithTag(1) as! GADBannerView
|
24
|
+
|
25
|
+
bannerView.adUnitID = "ca-app-pub-3539119629147220/7554333761"
|
26
|
+
|
27
|
+
bannerView.rootViewController = self
|
28
|
+
|
29
|
+
bannerView.load(GADRequest())
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
return cell
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
}else{
|
38
|
+
|
39
|
+
//インデックスパスが0じゃないなら全てコンテンツ
|
40
|
+
|
41
|
+
let cell2 = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
let profileImageView = cell2.viewWithTag(1) as! UIImageView
|
46
|
+
|
47
|
+
profileImageView.image = UIImage(named: profileImageArray[indexNumber - 1])
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
//名前Labelを作る
|
52
|
+
|
53
|
+
let nameLabel = cell2.viewWithTag(2) as! UILabel
|
54
|
+
|
55
|
+
nameLabel.textColor = .white
|
56
|
+
|
57
|
+
nameLabel.font = .boldSystemFont(ofSize: 20)
|
58
|
+
|
59
|
+
nameLabel.numberOfLines = 3
|
60
|
+
|
61
|
+
nameLabel.text = textArray[indexNumber - 1]
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
return cell2
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
```
|
1
情報の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1 +1,15 @@
|
|
1
|
-
Googleのタイムライン広告やインタースティシャル広告を表示するプロジェクトを作成しているのですが、遷移前のバナー広告は表示されづに、また画面遷移する前にThread 1: signal SIGABRTになります。聞いたところGoogleService-info.plistが入っていないとのことなのですが、navigaterに入れた後の設定がいまいちわかりません
|
1
|
+
Googleのタイムライン広告やインタースティシャル広告を表示するプロジェクトを作成しているのですが、遷移前のバナー広告は表示されづに、また画面遷移する前にThread 1: signal SIGABRTになります。聞いたところGoogleService-info.plistが入っていないとのことなのですが、navigaterに入れた後の設定がいまいちわかりません
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
エラー文
|
6
|
+
|
7
|
+
```Swift
|
8
|
+
|
9
|
+
Could not cast value of type 'UITableViewCellContentView' (0x7fff898d4310) to 'GADBannerView' (0x10523f8a8).
|
10
|
+
|
11
|
+
2020-03-18 16:39:28.604657-0700 MyGoogleAdmob[28210:510281] Could not cast value of type 'UITableViewCellContentView' (0x7fff898d4310) to 'GADBannerView' (0x10523f8a8).
|
12
|
+
|
13
|
+
(lldb)
|
14
|
+
|
15
|
+
```
|