- 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.
- ExtGWT Rich Internet Application Cookbook
- Progressive Web Apps with React
- C語言程序設(shè)計(jì)習(xí)題解析與上機(jī)指導(dǎo)(第4版)
- 算法精粹:經(jīng)典計(jì)算機(jī)科學(xué)問題的Java實(shí)現(xiàn)
- Mastering Entity Framework
- C和C++安全編碼(原書第2版)
- PostgreSQL技術(shù)內(nèi)幕:事務(wù)處理深度探索
- STM32F0實(shí)戰(zhàn):基于HAL庫開發(fā)
- JS全書:JavaScript Web前端開發(fā)指南
- 網(wǎng)站構(gòu)建技術(shù)
- Kotlin從基礎(chǔ)到實(shí)戰(zhàn)
- Angular開發(fā)入門與實(shí)戰(zhàn)
- Arduino家居安全系統(tǒng)構(gòu)建實(shí)戰(zhàn)
- 批調(diào)度與網(wǎng)絡(luò)問題的組合算法
- Android應(yīng)用案例開發(fā)大全(第二版)