回答編集履歴

1

正しい書体に変更

2019/08/15 09:28

投稿

TakuyaAso
TakuyaAso

スコア1361

test CHANGED
@@ -16,7 +16,9 @@
16
16
 
17
17
  func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
18
18
 
19
+ let text = UnicodeScalar(Int(self.stamps[indexPath.row], radix: 16)!)
20
+
19
- self.text1.text = self.stamps[indexPath.row]
21
+ self.text1.text = text?.description
20
22
 
21
23
  }
22
24