Delphi XE8 error FMX.ListView

牧云@^-^@ 提交于 2019-12-12 01:46:48

问题


I'm trying delphi XE 8 and I found that if I declare to use the library FMX.ListView gives me error (no load) when run on the iOS simulator. I have updated to the latest version XCode.

no problem:

   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.

error:

 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 it happen to someone else this error?

来源:https://stackoverflow.com/questions/29622963/delphi-xe8-error-fmx-listview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!