回答編集履歴

3

コメントを受けて回答追加

2021/11/06 06:07

投稿

TakeOne
TakeOne

スコア6299

test CHANGED
@@ -21,3 +21,29 @@
21
21
  そこを修正すれば、普通に文字の幅にあったメニューが表示されました。
22
22
 
23
23
  ![イメージ説明](7fe4020dc1f08a86af54169b86b4129a.png)
24
+
25
+
26
+
27
+ ---
28
+
29
+ (11/6 回答追加)
30
+
31
+
32
+
33
+ このDropDownライブラリは、ボタンの幅に合わせてメニューを表示するのがデフォルトの仕様になっているので、幅の広いボタンでメニューを表示したら、その幅に合わせた幅の広いメニューが表示されるのだと思います。DropDownライブラリの提供元のWebサイトで使い方を確認したところ、
34
+
35
+
36
+
37
+ ```
38
+
39
+ // Will set a custom width instead of the anchor view width
40
+
41
+ dropDownLeft.width = 200
42
+
43
+ ```
44
+
45
+ このようにwidthプロパティを設定すれば、指定した幅でメニューが表示されると説明されていました。
46
+
47
+
48
+
49
+ 提供元のドキュメントをきちんと読んで使い方を調べることをお勧めします。

2

この質問の回答に修正しました。

2021/11/06 06:07

投稿

TakeOne
TakeOne

スコア6299

test CHANGED
@@ -1 +1,23 @@
1
+ DropDownというのは、
2
+
3
+ [https://virtualsanpo.blogspot.com/2020/06/dropdownswift.html](https://virtualsanpo.blogspot.com/2020/06/dropdownswift.html)
4
+
5
+ で紹介されているDropDownライブラリでしょうか?
6
+
7
+
8
+
9
+ とりあえずこのライブラリをインストールして、質問に貼り付けられているコードをコピペし、Storyboardにボタンを貼り付けてoutlet接続とaction接続をしてみたところ
10
+
11
+
12
+
13
+ ``` swift
14
+
15
+ menu.anchorView = mail
16
+
17
+ ```
18
+
19
+ ここは `mail` ではなく `mails` だと思いますが、
20
+
1
- せん。回答場所を間違えました。
21
+ そこを修正れば、普通に文字の幅にあったメニューが表示されました。
22
+
23
+ ![イメージ説明](7fe4020dc1f08a86af54169b86b4129a.png)

1

回答場所誤り

2021/11/05 01:39

投稿

TakeOne
TakeOne

スコア6299

test CHANGED
@@ -1,23 +1 @@
1
- ``` swift
2
-
3
- func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
4
-
5
- ```
6
-
7
-
8
-
9
- 上記のdelegateメソッドの第一引数は、 `_` をつけて外部引数名省略で宣言する必要があります。
10
-
11
- ```
12
-
13
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
14
-
15
- ```
16
-
17
-
18
-
19
- それと、これは `UICollectionViewDelegateFlowLayout`プロトコルのdelegateメソッドなので、`UICollectionViewDelegateFlowLayout` に準拠することを指定する必要があります。
20
-
21
-
22
-
23
- その2つを修正れば呼び出されるようになると思い
1
+ せん回答場所を間違えました。