Delphi XE8 FMX.ListView error

I am trying to use delphi XE 8 and I found that if I declare to use a library, then FMX.ListView gives me an error (no load) when running on an iOS simulator. I have updated to the latest Xcode.

no problems:

   unit Unit2;

  interface

  uses
    System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
    FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs;

 type
  TForm2 = class(TForm)
  private
   { Private declarations }
  public
   { Public declarations }
 end;

var
 Form2: TForm2;

 implementation

{$R *.fmx}

end.

      

Mistake:

 unit Unit2;

 interface

uses
 System.SysUtils, System.Types, System.UITypes, System.Classes,  System.Variants,
 FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.ListView;

type
 TForm2 = class(TForm)
  private
   { Private declarations }
  public
   { Public declarations }
 end;

var
 Form2: TForm2;

implementation

{$R *.fmx}

 end.

      

Does anyone else have this error?

0


source to share





All Articles