
.xib resource-file. Property-values are not stored inside the fake- components, but reside inside a DOM-tree. The property getters and setters are used to obtain their values. This way all nodes which are unknown to the fake-components are not touched. The .xib file could be edited by xcode as well as Lazarus. The system to create a .xib file from the .lfm has now become obsolete. git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2620 8e941d3f-bd1b-0410-a28a-d453659cc2b4
23 lines
468 B
ObjectPascal
23 lines
468 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit iOSDesigner;
|
|
|
|
interface
|
|
|
|
uses
|
|
iOSNIBDesigner, iOS_Views, iOSIdeIntf, iOSXIBResource, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('iOSNIBDesigner', @iOSNIBDesigner.Register);
|
|
RegisterUnit('iOSIdeIntf', @iOSIdeIntf.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('iOSDesigner', @Register);
|
|
end.
|