D
Deleted member 103
Guest
Hi,
For example, if the Font.Name of Label1 is "ArialMT", then label2 should also get the same Font.Name.
From iOS 13 it is no longer so, because Label2 gets a completely different font.name.
See also: https://stackoverflow.com/questions/58710412/how-to-load-ios-13-default-font-using-font-name
For example, if the Font.Name of Label1 is "ArialMT", then label2 should also get the same Font.Name.
From iOS 13 it is no longer so, because Label2 gets a completely different font.name.
See also: https://stackoverflow.com/questions/58710412/how-to-load-ios-13-default-font-using-font-name
B4X:
Dim myFont As Font
myFont = Font.CreateNew2(label1.Font.Name, 12)
Dim label2 as Label
label2.Initialize("")
label2.font = myFont