iOS Question Is there any view that could display a list of fonts in their font ?

MitchBu

Well-Known Member
Licensed User
Longtime User
I looked at TableView but there does not seem to be any way to set the font for each item.

Before I start working on a pure graphics custom view, is there anything that could set a different font for each item ?

TIA
 

MitchBu

Well-Known Member
Licensed User
Longtime User
iCustomListView is exactly what I needed.

However, I need to hide it and show it only when picking a font is necessary. Apparently, the visible property is not available in code ?

As a workaround, I placed it on a panel so I can set the panel visible, but it would be nice to have access to the CLV.visible, which is in the Designer.
 
Last edited:
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
No. Don't ignore the comment:
1610346945459.png


Switch to xCLV and use CLV.AsView.Visible = False
 
Upvote 0
Top