4

As you all know, Embarcadero just released Delphi XE2. I have download it and i am very excited about having an way of creating an iOS app.

To create the iOS app we should export the code to xcode. But the question is: does every control works on iOS/xcode? I mean, if i want to connect to a sql lite database can I use the delphi controls to do so?

Is there any way of accessing some specific things in iOS like acelerometer and camera?

Is it possible to create a useful iPhone/Ipad app in Delphi (connect to a database, load grids, connect to a webservice, for example)?

Rafael Colucci
  • 6,018
  • 4
  • 52
  • 121

2 Answers2

3

1- I don't think you can Components Not Used in iOS Applications

-- I think you can use the TDatasource and the TClientDataSet though ;-)

2- Delphi uses FPC compiler for the iOS so you'll have to parse the iOS SDK headers before you can use it Parsing iOS headers or http://wiki.freepascal.org/objectivepascal#iOS_Headers but there are no out-of-the-box components (yet) that can access the Camera, Accelerometer, ...

3- Check number 1.

lkessler
  • 19,819
  • 36
  • 132
  • 203
helloworld0101
  • 140
  • 1
  • 7
1

Actually ... I think TClientDataSet isn't supported on iOS. I could be wrong ... but at least it wasn't supported a few months ago.

Stefaan
  • 492
  • 4
  • 19