回答編集履歴
1
コードの修正と追記
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
を追加し、`ViewController` を `InputBarAccessoryViewDelegate` に準拠させれば、
|
13
|
+
を追加し、~~`ViewController`~~ `MessageKitChatViewController` を `InputBarAccessoryViewDelegate` に準拠させれば、
|
14
14
|
|
15
15
|
|
16
16
|
|
@@ -23,3 +23,39 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
の行に出ているエラーは解消し、コンパイルも通るかと思います。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
---
|
30
|
+
|
31
|
+
```Swift
|
32
|
+
|
33
|
+
func messageInputBar(_ inputBar: MessageInputBar, didPressSendButtonWith text: String) {
|
34
|
+
|
35
|
+
}
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
ではなくて、
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
```Swift
|
46
|
+
|
47
|
+
func inputBar(_ inputBar: InputBarAccessoryView, didPressSendButtonWith text: String) {
|
48
|
+
|
49
|
+
print(#function)
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
だと反応するとおもいますが、そちらはどうでしょうか。
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
- [Message Kit Message DataSoure Delegates are not being called](https://stackoverflow.com/questions/58643577/message-kit-message-datasoure-delegates-are-not-being-called)
|