IphoneList

Hi, 

I'm trying to color each line of the Iphonelist with a different color.  But all lines always have still with the last color. What I need to do for have one line with one color? If this not possible, what i need to do to have the caption font color different for each line? 

Thank's
Hi, 

Unfortunately there's currently no option to specify a different color for one or more IWiPhoneList items.
You can, however, add an HTML tag around the caption text to change the font color for a specific item:

Example:
    with TIWIPhoneList1.Items.Add() do
    begin
      Caption := '<span style=''color:red;''>ItemText</span>';
   end;

Bart Holvoet2013-05-14 02:59:49

Bart Holvoet you are GREAT!!!!!

It was exactly what I needed

Best regards

Vinicius Matos