- Mastering iOS Game Development
- Miguel DeQuadros
- 220字
- 2021-07-23 14:54:37
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We will add another NSString
class at the top of our MultiplayerHelper.m
file."
A block of code is set as follows:
- (void)match:(GKMatch *)match didFailWithError:(NSError *)error { if (_match != match) return; NSLog(@"Match failed with error: %@", error.localizedDescription); _matchStarted = NO; [_delegate matchEnded]; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
- (void)update:(NSTimeInterval)delta { CGPoint gravity = CGPointMake(0.0, -450.0); CGPoint gravityStep = CGPointMultiplyScalar(gravity, delta); CGPoint movingForward = CGPointMake(750.0, 0.0); CGPoint movingForwardStep = CGPointMultiplyScalar(walking, delta); self.velocity = CGPointAdd(self.velocity, gravityStep);
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "For this project, we are—obviously—going to select iOS | Application | Single View Application and then click on Next.".
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Power Up Your PowToon Studio Project
- Java應用開發與實踐
- Instant Typeahead.js
- Monitoring Elasticsearch
- 匯編語言程序設計(第3版)
- Learning Selenium Testing Tools(Third Edition)
- 微信小程序入門指南
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- Java系統化項目開發教程
- Test-Driven Machine Learning
- Domain-Driven Design in PHP
- JSP程序設計實例教程(第2版)
- IoT Projects with Bluetooth Low Energy
- Modernizing Legacy Applications in PHP
- iOS開發項目化入門教程