- iOS 9 Game Development Essentials
- Chuck Gaffney
- 267字
- 2021-08-05 16:36:55
Chapter 1. The Swift Programming Language
At the core of game development is your game's code. It is the brain of your project and outside of the art, sound, and various asset developments. It is where you will spend most of your time creating and testing your game. Up until Apple's Worldwide Developers Conference WWDC14 in June of 2014, the code of choice for iOS game and app development was Objective-C. At WWDC14, a new and faster programming language, Swift, was announced and is now the recommended language for all current and future iOS games and general app creation.
As of the time of writing, you can still use Objective-C to design your games, but programmers, both, new and seasoned, will see why writing in Swift is not only easier for expressing your game's logic, but even more preformat. Keeping your game running at that critical 60 fps is dependent on fast code and logic. Engineers at Apple developed the Swift programming language from the ground up with performance and readability in mind, so this language can execute certain code iterations faster than Objective-C while also keeping code ambiguity to a minimum. Swift also uses many of the methodologies and syntaxes found in more modern languages, such as Scala, JavaScript, Ruby, and Python.
So, let's dive into the Swift language.
Note
It is recommended that some basic knowledge of object-oriented programming (OOP) be known previously, but we will try to keep the build-up and explanation of code simple and easy to follow as we move on to the more advanced topics related to game development.
- ClickHouse性能之巔:從架構設計解讀性能之謎
- OpenDaylight Cookbook
- Spring 5.0 By Example
- 機械工程師Python編程:入門、實戰與進階
- C語言程序設計案例式教程
- Serverless架構
- Oracle Exadata專家手冊
- ArcGIS for Desktop Cookbook
- Spring MVC+MyBatis開發從入門到項目實踐(超值版)
- Flowable流程引擎實戰
- Deep Learning with R Cookbook
- C語言程序設計實驗指導
- Web前端開發技術實踐指導教程
- 3D Printing Designs:Design an SD Card Holder
- Pandas入門與實戰應用:基于Python的數據分析與處理