[ANN] Delphi iOS Native Components [Edit]Delphi XE4, XE5 100% Native iOS Components
Develop faster Native iOS applications with Delphi.
Info: http://sourceforge.net/projects/dpfdelphiios/
Download: http://sourceforge.net/projects/dpfdelphiios/files/latest/download
> Delphi XE4 100% Native iOS Components
>
> http://sourceforge.net/projects/dpfdelphiios/
Interesting. I think you should credit things you have just copied however - I see you have included David Clegg's NSUserDefaults wrapper and other code of his, for example.
More constructively, I wonder whether it would possible to improve the designtime...
How to make XE4 Firemonkey ios Component from native iOS UI controls ? [Edit]Hi,
I write this simple code for control volume in iOS
{code}
Var MPV : MPVolumeView;
Procedure TForm1.SbPlayClick( Sender: TObject );
Begin
MPV := TMPVolumeView.Wrap( TMPVolumeView.Alloc.InitWithFrame( CGRectMake( 20, 50, 200, 100 ) ) );
MPV.SetShowsRouteButton( True );
MPV.SetShowsVolumeSlider( True );
MPV.SetNeedsDisplay;
WindowHandleToPlatform( Self.Handle ).View.AddSubview( MPV );
End;
{code}
MPVolumeView is a iOS UIView.
with this line we can add iOS UIView elements into form, now how can add this elements into firemonkey controls ?
{code}
WindowHandle...
How to make XE4 Firemonkey ios Component from native iOS UI controls ? [Edit]Hi,
I write this simple code for control volume in iOS
{code}
Var MPV : MPVolumeView;
Procedure TForm1.SbPlayClick( Sender: TObject );
Begin
MPV := TMPVolumeView.Wrap( TMPVolumeView.Alloc.InitWithFrame( CGRectMake( 20, 50, 200, 100 ) ) );
MPV.SetShowsRouteButton( True );
MPV.SetShowsVolumeSlider( True );
MPV.SetNeedsDisplay;
WindowHandleToPlatform( Self.Handle ).View.AddSubview( MPV );
End;
{code}
MPVolumeView is a iOS UIView.
with this line we can add iOS UIView elements into form, now how can add this elements into firemonkey controls ?
{code}
WindowHandle...
MOVED: [ANN] Delphi iOS Native Components [Edit]Moved to: embarcadero.public.delphi.thirdpartytools.general
or: https://forums.embarcadero.com/thread.jspa?threadID=88902
--
Rudy Velthuis (TeamB) http://www.teamb.com
"You know you've achieved perfection in design, not when you
have nothing more to add, but when you have nothing more to
take away." -- Antoine de Saint-Exupery, Wind, Sand and Stars
...
SEPA components for Delphi with Source Code (Delphi 5Hi all,
in the european union change next year the Bankingformat to the SEPA Format.
All peoples and companies must change the bankingssoftware and the costumer data form acountnummers in the new IBAN and BIC numbers.
See:
http://www.arma-it.de/shop/artikelueber.php?wgruppeid=211&wgruppe_offen=211
Functions:
- generate SEPA XML'S
- Calc IBAN
- BIC Database (DE,AT and CH)
Questions:
vertrieb@arma-it.de
PS:
Bankinssoftware for Develpoers (Germany only)
http://www.arma-it.de/shop/artikelueber.php?wgruppeid=212&wgruppe_offen=212
El 26/10/13 21:38, A...
Does Delphi for iOS come with native iOS UI controls?According to this link http://www.embarcadero.com/products/delphi/ios-development,
Delphi for iOS comes with "Pixel-perfect native UI controls".
Are those controls the iOS native ones (UILabel, UIText, UISwitch, MKMapView, etc.),
i.e. the same ones that one sees in XCode InterfaceBuilder?
Le 31/01/13 19:02, Jacques Gonzalez a écrit :
> According to this link http://www.embarcadero.com/products/delphi/ios-development,
> Delphi for iOS comes with "Pixel-perfect native UI controls".
>
> Are those controls the iOS native ones (UILabel, UIText, UIS...
I can to install one not delphi program foir iOS into one iOS for delphi?For example i have one programm builded as xcode for iOS, and i build one program as delphi for iOS. I want to have only one instalation, i can to add this xcode program into my delphi installer of my ios program?
I can to do the same as android? how i can to to this?
> {quote:title=oscar mejia wrote:}{quote}
> For example i have one programm builded as xcode for iOS, and i build one program as delphi for iOS. I want to have only one instalation, i can to add this xcode program into my delphi installer of my ios program?
>
> I can to do the same as android? how i can to to...
Can I do this with iOS apps developed in Delphi XE4 Pro + iOS?I still don't have XE4/iOS as I have some questions first.
Do I have access to iOS "native" library/system?
What do I use for internet (downloading files etc.) - Indy?
*If my research is correct, Google maps is available for iOS? Can I use Google maps or Apple's maps solutions in Delphi iOS apps?*
If I have XE4 Pro, can I still use database functionality? Any restrictions? (Am I allowed to use what iOS offers or connect with a database on a webserver?)
Anyone here developed demo apps I can see available in Apple iTunes store? (Even simple apps is okay as I onl...
How do I remove IOS from the Delphi XE4 compile? [Edit]I have mistakenly turned on IOS compile for a project. How do I turn off IOS Delphi XE4 compile attempts?
Compiling DocGen.dproj (Debug, Win32)
dcc command line for "DocGen.dpr"
Success
Elapsed time: 00:00:01.2
Deploy
paclient command line for "WS210"
[PAClient Error] Error: E0003 Connection to 'WS210' on port 64211 failed
[PAClient Error] Error: E0003 Please make sure that 'Platform Assistant Server' is running on the host machine and is configured to use port 64211
Failed
============================
Looks like it will compile for Windows. I c...
Is iOS printing implemented in Delphi XE5? [Edit]Delphi XE4 has a empty FMX.Printers.iOS.pas implementation, is this solved in the new version?
Edited by: Martijn Van der Kooij on Sep 12, 2013 12:13 AM
I asked this question before as well, here is what I found out..
Only support at the moment, is to get what you want to print into an image and then use the Sharesheet -> print functionality. There are demo's of this on youtube for ios and android.
So very limited printing support available, no sign or comment (I asked them) from FMX Fastreports for a report printing component for Firemonkey mobile.
...
Delphi XE4 iOS client notifications [Edit]We are building an app for iOS and need to be able to listen for asynchronous client-side notification events created by a third party library. It was pretty difficult to figure out how to import the third-party objective C library but we were able to do it by creating "fake calls." We can now compile and run the application but have not been able to register our application to receive notifications created by the third party library. For example, we have a credit card swiper that plugs into the audio jac
k. When a credit card is swiped, it creates an asynchronous client notificatio...
Delphi XE4 - FiremonkeyI have an application that runs fine on windows, however when running on iOS simulator the onKeyUp event for a TEdit control is not being fired?
Please advise if this event should get fired when running on iOS?
This problem occurs onKeyUp events created directly on the control and by assigning the event programatically.
Running XE4 update 1
iPhoneOS6.1.sdk
Minimac: OS X 10.9
XCode 5
iOS Simulator Version 7.0 - iPad Retina / iOS 7.0.3(11B508)
...
MOVED: Delphi XE4 iOS client notifications [Edit]Moved on request to
embarcadero.public.delphi.platformspecific.ios
or: https://forums.embarcadero.com/thread.jspa?threadID=88951
--
Rudy Velthuis (TeamB) http://www.teamb.com
"Once you have seen certain things, you can't un-see them, and
seeing nothing is as political an act as seeing something."
-- Arundhati Roy
...
why delphi xe4 does not have a demo for IOS Rest DataSanp Client ? [Edit]I really need Demo for Res DataSnap Server (connect to mySql /msSql) and a IOS Rest DataSanp Client.
But I can't not find any?
Why?
Mainly, I need to know how to add, delete, update records on IOS Rest DataSanp Client.
Anyone could provide a hint.!!!
Mitchell Hu
Edited by: Mitchell Hu on May 24, 2013 12:17 PM
Edited by: Mitchell Hu on May 24, 2013 12:22 PM
...