1
0
Files
applications
bindings
components
Comba_Animation
aboutcomponent
acs
beepfp
callite
chelper
chemtext
cmdline
cmdlinecfg
colorpalette
cryptini
csvdocument
epiktimer
everettrandom
examplecomponent
extrasyn
fpexif
fpsound
fpspreadsheet
fractions
freetypepascal
geckoport
gradcontrols
grid_semaphor
industrialstuff
iosdesigner
Examples
icons
README.txt
ios_views.pas
iosdesigner.lpk
iosdesigner.pas
iosdesigner.res
iosideintf.pas
iosnibdesigner.pas
iosxibresource.pas
iphonelazext
jujiboutils
jvcllaz
kcontrols
lazautoupdate
lazbarcodes
lazmapviewer
lclextensions
longtimer
manualdock
mbColorLib
mplayer
multithreadprocs
nvidia-widgets
onguard
orpheus
playsoundpackage
poweredby
powerpdf
rgbgraphics
richmemo
richview
rtfview
rx
scrolltext
smnetgradient
spktoolbar
svn
systools
tdi
thtmlport
tparadoxdataset
tvplanit
xdev_toolkit
zlibar
zmsql
examples
image_sources
lclbindings
wst
lazarus-ccr/components/iosdesigner/iosdesigner.pas
loesje_ 59a45e49b3 * The form is no longer stored inside a .lfm resource, but directly in a
.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
2013-01-12 10:00:53 +00:00

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.