TMSFMXTableView Font

How can you change the font and font size of the items?  I have an iOS project using the TableView to simulate an iMessage conversation and the font size of the Description text is too small.

Hi, 


You need to change this on style level, by changing the font size of the description element, which is part of the default item. 

In code this would be:

procedure TForm1.FormCreate(Sender: TObject);
begin
  TMSFMXTableView1.NeedStyleLookup;
  TMSFMXTableView1.ApplyStyleLookup;
  (TMSFMXTableView1.GetDefaultItem.FindStyleResource('itemdescription') as TText).Font.Size := 20;
  TMSFMXTableView1.UpdateTableView;
end;


Perfect, thanks!!