Please see this image. On responsive website, the Side menu and Home icons some times shows as Imoji's. The icons used are from Icons library : font-family: feather
Asked
Active
Viewed 17 times
0
-
What exactly is the question? Did you want help with coding? – Holly Plyler Jan 09 '19 at 20:34
1 Answers
0
Normally icon fonts are still accessible by letters, find the appropriate letter and set the button text and font.
let button = UIButton(frame: CGRect.zero)
button.titleLabel?.font = UIFont(name: "feather", size: 50.0)
button.setTitle("A", for: .normal)

Naveen Shan
- 9,192
- 3
- 29
- 43