- Swift 4 Programming Cookbook
- Keith Moon
- 593字
- 2021-07-08 10:21:16
What this book covers
Chapter 1, Swift Building Blocks, introduces you to the basic building blocks of Swift 4, its syntax, and the functionalities of basic Swift constructs. Also, this chapter will introduce you to Apple’s Xcode 9 IDE and Swift Playgrounds, which provide an ideal way to create, execute, debug, and understand the recipes contained in this book, thus setting you up to initiate the development process. In this chapter, learn to write your first Swift program and understand the various basic elements of the Swift language.
Chapter 2, Building on the Building Blocks, teaches the reader to create more complex structures on the basis of the building blocks that you studied in the first chapter and the functionalities provided by the Swift standard library. You will get an understanding of how to bundle the variables into tuples, order the data with the help of an array, and store key-value pairs with Dictionaries. Also, you can learn to use the property observers and control the access to and visibility of your code. Then, you will also learn to extend the functionalities of your codes using the extensions.
Chapter 3, Data Wrangling with Swift Control Flow, says that programming is all about making decisions; therefore, this chapter explores how to make a decision on the basis of information gained and how to alter the control flow of the code. You can learn how to conditionally execute code with if/else statements, control the flow of execution of your code with switch statements, and then loop the code by understanding how to use the for and while loops. Then, you will understand how to handle Swift errors with the try, throw, do, and catch statements, and also how a defer statement can be useful to change state once a function's execution is complete or to clean up values that are no longer needed.
Chapter 4, Generics, Operators, and Nested Types, provides you with an understanding of two of the advanced features of Swift, which are generics and operators. Using these features, you can learn to build functionalities that are flexible and well defined, and also understand how nested types allow logical grouping, access, and namespacing for your constructs.
Chapter 5, Beyond the Standard Library, takes you on a journey to explore the functionalities beyond the standard library, provided by frameworks such as Foundation and UIKit. Learning to use these functionalities will help you make full use of the Swift language.
Chapter 6, Swift Playgrounds, gives a total understanding of using Swift Playgrounds and explores advanced features, apart from those explored in the initial chapters, to create fully interactive experiences.
Chapter 7, Server-Side Swift, covers a totally different aspect of Swift programming, server-side programming with Swift. Also, you can gain an understanding of how to run Swift on Linux by installing the Swift toolchain, learn to use a web server framework to build a REST API, and host your API via a hosting service. Also, you can learn to accomplish your tasks easily by understanding how to use Vapor, one of the most popular frameworks in Swift 4.
Chapter 8, Performance and Responsiveness in Swift, concludes the book by exploring the more advanced concepts of Swift programming to gain an understanding of how certain Swift types are implemented and their performance characteristics. Also, it explains how to perform asynchronous tasks using Grand Central Dispatch. Then, it explores the multithreaded environment available on all Apple platforms and how to enhance the performance profile of your Swift constructs to build a fast and responsive app.
- Java高并發核心編程(卷2):多線程、鎖、JMM、JUC、高并發設計模式
- Microsoft Application Virtualization Cookbook
- oreilly精品圖書:軟件開發者路線圖叢書(共8冊)
- Access 2010數據庫基礎與應用項目式教程(第3版)
- Python算法指南:程序員經典算法分析與實現
- C++20高級編程
- Oracle實用教程
- Java 從入門到項目實踐(超值版)
- jQuery for Designers Beginner's Guide Second Edition
- Practical GIS
- R語言數據挖掘:實用項目解析
- Mastering OAuth 2.0
- Parallel Programming with Python
- Getting Started with the Lazarus IDE
- 面向對象分析與設計(第3版)