创建 iOS 应用程序的工作流程是什么
使用 Delphi-XE2 创建 iOS 应用程序的工作流程是什么?
这确实是一个参考问题,一旦允许我就会回答它,但我认为在这里得到答案会很好
What's the workflow for creating an iOS app using Delphi-XE2.
This is really a reference question and I'll answer it as soon as SO lets me, but I thought it would be nice to have the answer here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iOS 应用程序
FireMonkey iOS 应用程序是用 Delphi 编写的:
iOS 项目在项目管理器中没有目标平台节点;他们仅针对 iOS
iOS 表单
添加其他 Delphi 表单的方式与 Windows 和 Mac OS X 相同。由于目标平台是 iOS,并且生产可执行文件是使用 Free Pascal 编译器构建的,因此表单单元的使用声明有所不同:
iOS 工作流程< /strong>
FireMonkey iOS 开发必须使用Windows 和 Mac 来完成。
在开始您的第一个 iOS 项目之前,您必须在两端执行一次性设置。然后,对于每个项目,开发按以下顺序进行:
编译器和运行时差异
Xcode 使用 Free Pascal 编译器构建应用程序以在 Free Pascal 运行时库上运行。 Free Pascal 不支持 Delphi 编译器和 RTL 的某些功能。
iOS Applications
FireMonkey iOS applications are written in Delphi:
Projects for iOS do not have a Target Platforms node in the Project Manager; they only target iOS
iOS Forms
Additional Delphi forms are added the same way as with Windows and Mac OS X. Because the target platform is iOS, and the production executable is built with the Free Pascal compiler, the uses declaration for form units is different:
iOS Workflow
FireMonkey iOS development has to be done using both Windows and a Mac.
Before starting your first iOS project, you must perform one-time setup on both ends. Then for each project, development occurs in the following sequence:
Compiler and Runtime Differences
Xcode builds the application with the Free Pascal compiler to run on the Free Pascal runtime library. Some features of the Delphi compiler and RTL are not supported by Free Pascal.