Swift Slot Machine Tutorial

3/26/2022by admin
On This Page
  • A Swift Tour

The tutorial was written for Swift 4.0. I’ve used this awesome tool to manage Swift versions on my machine. Back in the days, iOS developers had CocoaPods and Carthage to manage project. The state of machine learning reminds me of Swift 1.0. When Swift 1.0 came out, it had features that were unusual in mainstream languages, such as Swift enums. Because so many people paid attention to Swift, and because it was so important, those features suddenly became mainstream.

Tradition suggests that the first program in a new language should print the words “Hello, world!” on the screen. In Swift, this can be done in a single line:

If you have written code in C or Objective-C, this syntax looks familiar to you—in Swift, this line of code is a complete program. You don’t need to import a separate library for functionality like input/output or string handling. Code written at global scope is used as the entry point for the program, so you don’t need a main() function. You also don’t need to write semicolons at the end of every statement.

This tour gives you enough information to start writing code in Swift by showing you how to accomplish a variety of programming tasks. Don’t worry if you don’t understand something—everything introduced in this tour is explained in detail in the rest of this book.

Note

For the best experience, open this chapter as a playground in Xcode.Playgrounds allow you to edit the code listings and see the result immediately.

Simple Values¶

Use let to make a constant and var to make a variable. The value of a constant doesn’t need to be known at compile time, but you must assign it a value exactly once. This means you can use constants to name a value that you determine once but use in many places.

  1. varmyVariable = 42
  2. myVariable = 50
  3. letmyConstant = 42

A constant or variable must have the same type as the value you want to assign to it. However, you don’t always have to write the type explicitly. Providing a value when you create a constant or variable lets the compiler infer its type. In the example above, the compiler infers that myVariable is an integer because its initial value is an integer.

If the initial value doesn’t provide enough information (or if there is no initial value), specify the type by writing it after the variable, separated by a colon.

  1. letimplicitInteger = 70
  2. letimplicitDouble = 70.0
  3. letexplicitDouble: Double = 70

Experiment

Create a constant with an explicit type of Float and a value of 4.

Values are never implicitly converted to another type. If you need to convert a value to a different type, explicitly make an instance of the desired type.

  1. letlabel = 'The width is '
  2. letwidth = 94
  3. letwidthLabel = label + String(width)

Experiment

Try removing the conversion to String from the last line. What error do you get?

There’s an even simpler way to include values in strings: Write the value in parentheses, and write a backslash () before the parentheses. For example:

  1. letapples = 3
  2. letoranges = 5
  3. letappleSummary = 'I have (apples) apples.'
  4. letfruitSummary = 'I have (apples + oranges) pieces of fruit.'

Experiment

Use () to include a floating-point calculation in a string and to include someone’s name in a greeting.

Use three double quotation marks ('') for strings that take up multiple lines. Indentation at the start of each quoted line is removed, as long as it matches the indentation of the closing quotation marks. For example:

  1. letquotation = ''
  2. I said 'I have (apples) apples.'
  3. And then I said 'I have (apples + oranges) pieces of fruit.'
  4. ''

Create arrays and dictionaries using brackets ([]), and access their elements by writing the index or key in brackets. A comma is allowed after the last element.

  1. varshoppingList = ['catfish', 'water', 'tulips']
  2. shoppingList[1] = 'bottle of water'
  3. varoccupations = [
  4. 'Malcolm': 'Captain',
  5. 'Kaylee': 'Mechanic',
  6. ]
  7. occupations['Jayne'] = 'Public Relations'

Arrays automatically grow as you add elements.

  1. shoppingList.append('blue paint')
  2. print(shoppingList)

To create an empty array or dictionary, use the initializer syntax.

  1. letemptyArray = [String]()
  2. letemptyDictionary = [String: Float]()

If type information can be inferred, you can write an empty array as [] and an empty dictionary as [:]—for example, when you set a new value for a variable or pass an argument to a function.

Control Flow¶

Use if and switch to make conditionals, and use for-in, while, and repeat-while to make loops. Parentheses around the condition or loop variable are optional. Braces around the body are required.

  1. letindividualScores = [75, 43, 103, 87, 12]
  2. varteamScore = 0
  3. forscoreinindividualScores {
  4. ifscore > 50 {
  5. teamScore += 3
  6. } else {
  7. teamScore += 1
  8. }
  9. }
  10. print(teamScore)
  11. // Prints '11'

In an if statement, the conditional must be a Boolean expression—this means that code such as ifscore{...} is an error, not an implicit comparison to zero.

You can use if and let together to work with values that might be missing. These values are represented as optionals. An optional value either contains a value or contains nil to indicate that a value is missing. Write a question mark (?) after the type of a value to mark the value as optional.

  1. varoptionalString: String? = 'Hello'
  2. print(optionalStringnil)
  3. // Prints 'false'
  4. varoptionalName: String? = 'John Appleseed'
  5. vargreeting = 'Hello!'
  6. ifletname = optionalName {
  7. greeting = 'Hello, (name)'
  8. }

Experiment

Change optionalName to nil. What greeting do you get? Add an else clause that sets a different greeting if optionalName is nil.

If the optional value is nil, the conditional is false and the code in braces is skipped. Otherwise, the optional value is unwrapped and assigned to the constant after let, which makes the unwrapped value available inside the block of code.

Another way to handle optional values is to provide a default value using the ?? operator. If the optional value is missing, the default value is used instead.

  1. letnickname: String? = nil
  2. letfullName: String = 'John Appleseed'
  3. letinformalGreeting = 'Hi (nickname ?? fullName)'

Switches support any kind of data and a wide variety of comparison operations—they aren’t limited to integers and tests for equality.

  1. letvegetable = 'red pepper'
  2. switchvegetable {
  3. case'celery':
  4. print('Add some raisins and make ants on a log.')
  5. case'cucumber', 'watercress':
  6. print('That would make a good tea sandwich.')
  7. caseletxwherex.hasSuffix('pepper'):
  8. print('Is it a spicy (x)?')
  9. default:
  10. print('Everything tastes good in soup.')
  11. }
  12. // Prints 'Is it a spicy red pepper?'

Experiment

Try removing the default case. What error do you get?

Notice how let can be used in a pattern to assign the value that matched the pattern to a constant.

After executing the code inside the switch case that matched, the program exits from the switch statement. Execution doesn’t continue to the next case, so there is no need to explicitly break out of the switch at the end of each case’s code.

You use for-in to iterate over items in a dictionary by providing a pair of names to use for each key-value pair. Dictionaries are an unordered collection, so their keys and values are iterated over in an arbitrary order.

  1. letinterestingNumbers = [
  2. 'Prime': [2, 3, 5, 7, 11, 13],
  3. 'Fibonacci': [1, 1, 2, 3, 5, 8],
  4. 'Square': [1, 4, 9, 16, 25],
  5. ]
  6. varlargest = 0
  7. for (kind, numbers) ininterestingNumbers {
  8. fornumberinnumbers {
  9. ifnumber > largest {
  10. largest = number
  11. }
  12. }
  13. }
  14. print(largest)
  15. // Prints '25'

Experiment

Add another variable to keep track of which kind of number was the largest, as well as what that largest number was.

Use while to repeat a block of code until a condition changes. The condition of a loop can be at the end instead, ensuring that the loop is run at least once.

  1. varn = 2
  2. whilen < 100 {
  3. n *= 2
  4. }
  5. print(n)
  6. // Prints '128'
  7. varm = 2
  8. repeat {
  9. m *= 2
  10. } whilem < 100
  11. print(m)
  12. // Prints '128'

You can keep an index in a loop by using ..< to make a range of indexes.

  1. vartotal = 0
  2. foriin0..<4 {
  3. total += i
  4. }
  5. print(total)
  6. // Prints '6'

Use ..< to make a range that omits its upper value, and use ... to make a range that includes both values.

Functions and Closures¶

Tutorial

Use func to declare a function. Call a function by following its name with a list of arguments in parentheses. Use -> to separate the parameter names and types from the function’s return type.

  1. funcgreet(person: String, day: String) -> String {
  2. return'Hello (person), today is (day).'
  3. }
  4. greet(person: 'Bob', day: 'Tuesday')

Experiment

Remove the day parameter. Add a parameter to include today’s lunch special in the greeting.

By default, functions use their parameter names as labels for their arguments. Write a custom argument label before the parameter name, or write _ to use no argument label.

  1. funcgreet(_person: String, onday: String) -> String {
  2. return'Hello (person), today is (day).'
  3. }
  4. greet('John', on: 'Wednesday')

Use a tuple to make a compound value—for example, to return multiple values from a function. The elements of a tuple can be referred to either by name or by number.

  1. funccalculateStatistics(scores: [Int]) -> (min: Int, max: Int, sum: Int) {
  2. varmin = scores[0]
  3. varmax = scores[0]
  4. varsum = 0
  5. forscoreinscores {
  6. ifscore > max {
  7. max = score
  8. } elseifscore < min {
  9. min = score
  10. }
  11. sum += score
  12. }
  13. return (min, max, sum)
  14. }
  15. letstatistics = calculateStatistics(scores: [5, 3, 100, 3, 9])
  16. print(statistics.sum)
  17. // Prints '120'
  18. print(statistics.2)
  19. // Prints '120'

Functions can be nested. Nested functions have access to variables that were declared in the outer function. You can use nested functions to organize the code in a function that is long or complex.

  1. funcreturnFifteen() -> Int {
  2. vary = 10
  3. funcadd() {
  4. y += 5
  5. }
  6. add()
  7. returny
  8. }
  9. returnFifteen()

Functions are a first-class type. This means that a function can return another function as its value.

  1. funcmakeIncrementer() -> ((Int) -> Int) {
  2. funcaddOne(number: Int) -> Int {
  3. return1 + number
  4. }
  5. returnaddOne
  6. }
  7. varincrement = makeIncrementer()
  8. increment(7)

A function can take another function as one of its arguments.

  1. funchasAnyMatches(list: [Int], condition: (Int) -> Bool) -> Bool {
  2. foriteminlist {
  3. ifcondition(item) {
  4. returntrue
  5. }
  6. }
  7. returnfalse
  8. }
  9. funclessThanTen(number: Int) -> Bool {
  10. returnnumber < 10
  11. }
  12. varnumbers = [20, 19, 7, 12]
  13. hasAnyMatches(list: numbers, condition: lessThanTen)

Functions are actually a special case of closures: blocks of code that can be called later. The code in a closure has access to things like variables and functions that were available in the scope where the closure was created, even if the closure is in a different scope when it is executed—you saw an example of this already with nested functions. You can write a closure without a name by surrounding code with braces ({}). Use in to separate the arguments and return type from the body.

  1. numbers.map({ (number: Int) -> Intin
  2. letresult = 3 * number
  3. returnresult
  4. })

Experiment

Rewrite the closure to return zero for all odd numbers.

You have several options for writing closures more concisely. When a closure’s type is already known, such as the callback for a delegate, you can omit the type of its parameters, its return type, or both. Single statement closures implicitly return the value of their only statement.

  1. letmappedNumbers = numbers.map({ numberin3 * number })
  2. print(mappedNumbers)
  3. // Prints '[60, 57, 21, 36]'

You can refer to parameters by number instead of by name—this approach is especially useful in very short closures. A closure passed as the last argument to a function can appear immediately after the parentheses. When a closure is the only argument to a function, you can omit the parentheses entirely.

  1. letsortedNumbers = numbers.sorted { $0 > $1 }
  2. print(sortedNumbers)
  3. // Prints '[20, 19, 12, 7]'

Objects and Classes¶

Use class followed by the class’s name to create a class. A property declaration in a class is written the same way as a constant or variable declaration, except that it is in the context of a class. Likewise, method and function declarations are written the same way.

  1. classShape {
  2. varnumberOfSides = 0
  3. funcsimpleDescription() -> String {
  4. return'A shape with (numberOfSides) sides.'
  5. }
  6. }

Experiment

Add a constant property with let, and add another method that takes an argument.

Create an instance of a class by putting parentheses after the class name. Use dot syntax to access the properties and methods of the instance.

  1. varshape = Shape()
  2. shape.numberOfSides = 7
  3. varshapeDescription = shape.simpleDescription()

This version of the Shape class is missing something important: an initializer to set up the class when an instance is created. Use init to create one.

  1. classNamedShape {
  2. varnumberOfSides: Int = 0
  3. varname: String
  4. init(name: String) {
  5. self.name = name
  6. }
  7. funcsimpleDescription() -> String {
  8. return'A shape with (numberOfSides) sides.'
  9. }
  10. }

Swift Slot Machine Tutorial Machine

Notice how self is used to distinguish the name property from the name argument to the initializer. The arguments to the initializer are passed like a function call when you create an instance of the class. Every property needs a value assigned—either in its declaration (as with numberOfSides) or in the initializer (as with name).

Use deinit to create a deinitializer if you need to perform some cleanup before the object is deallocated.

Subclasses include their superclass name after their class name, separated by a colon. There is no requirement for classes to subclass any standard root class, so you can include or omit a superclass as needed.

Methods on a subclass that override the superclass’s implementation are marked with override—overriding a method by accident, without override, is detected by the compiler as an error. The compiler also detects methods with override that don’t actually override any method in the superclass.

  1. classSquare: NamedShape {
  2. varsideLength: Double
  3. init(sideLength: Double, name: String) {
  4. self.sideLength = sideLength
  5. super.init(name: name)
  6. numberOfSides = 4
  7. }
  8. funcarea() -> Double {
  9. returnsideLength * sideLength
  10. }
  11. overridefuncsimpleDescription() -> String {
  12. return'A square with sides of length (sideLength).'
  13. }
  14. }
  15. lettest = Square(sideLength: 5.2, name: 'my test square')
  16. test.area()
  17. test.simpleDescription()

Experiment

Make another subclass of NamedShape called Circle that takes a radius and a name as arguments to its initializer. Implement an area() and a simpleDescription() method on the Circle class.

In addition to simple properties that are stored, properties can have a getter and a setter.

  1. classEquilateralTriangle: NamedShape {
  2. varsideLength: Double = 0.0
  3. init(sideLength: Double, name: String) {
  4. self.sideLength = sideLength
  5. super.init(name: name)
  6. numberOfSides = 3
  7. }
  8. varperimeter: Double {
  9. get {
  10. return3.0 * sideLength
  11. }
  12. set {
  13. sideLength = newValue / 3.0
  14. }
  15. }
  16. overridefuncsimpleDescription() -> String {
  17. return'An equilateral triangle with sides of length (sideLength).'
  18. }
  19. }
  20. vartriangle = EquilateralTriangle(sideLength: 3.1, name: 'a triangle')
  21. print(triangle.perimeter)
  22. // Prints '9.3'
  23. triangle.perimeter = 9.9
  24. print(triangle.sideLength)
  25. // Prints '3.3000000000000003'

In the setter for perimeter, the new value has the implicit name newValue. You can provide an explicit name in parentheses after set.

Notice that the initializer for the EquilateralTriangle class has three different steps:

  1. Setting the value of properties that the subclass declares.
  2. Calling the superclass’s initializer.
  3. Changing the value of properties defined by the superclass. Any additional setup work that uses methods, getters, or setters can also be done at this point.

If you don’t need to compute the property but still need to provide code that is run before and after setting a new value, use willSet and didSet. The code you provide is run any time the value changes outside of an initializer. For example, the class below ensures that the side length of its triangle is always the same as the side length of its square.

  1. classTriangleAndSquare {
  2. vartriangle: EquilateralTriangle {
  3. willSet {
  4. square.sideLength = newValue.sideLength
  5. }
  6. }
  7. varsquare: Square {
  8. willSet {
  9. triangle.sideLength = newValue.sideLength
  10. }
  11. }
  12. init(size: Double, name: String) {
  13. square = Square(sideLength: size, name: name)
  14. triangle = EquilateralTriangle(sideLength: size, name: name)
  15. }
  16. }
  17. vartriangleAndSquare = TriangleAndSquare(size: 10, name: 'another test shape')
  18. print(triangleAndSquare.square.sideLength)
  19. // Prints '10.0'
  20. print(triangleAndSquare.triangle.sideLength)
  21. // Prints '10.0'
  22. triangleAndSquare.square = Square(sideLength: 50, name: 'larger square')
  23. print(triangleAndSquare.triangle.sideLength)
  24. // Prints '50.0'
Slot

When working with optional values, you can write ? before operations like methods, properties, and subscripting. If the value before the ? is nil, everything after the ? is ignored and the value of the whole expression is nil. Otherwise, the optional value is unwrapped, and everything after the ? acts on the unwrapped value. In both cases, the value of the whole expression is an optional value.

  1. letoptionalSquare: Square? = Square(sideLength: 2.5, name: 'optional square')
  2. letsideLength = optionalSquare?.sideLength

Enumerations and Structures¶

Use enum to create an enumeration. Like classes and all other named types, enumerations can have methods associated with them.

  1. enumRank: Int {
  2. caseace = 1
  3. casetwo, three, four, five, six, seven, eight, nine, ten
  4. casejack, queen, king
  5. funcsimpleDescription() -> String {
  6. switchself {
  7. case .ace:
  8. return'ace'
  9. case .jack:
  10. return'jack'
  11. case .queen:
  12. return'queen'
  13. case .king:
  14. return'king'
  15. default:
  16. returnString(self.rawValue)
  17. }
  18. }
  19. }
  20. letace = Rank.ace
  21. letaceRawValue = ace.rawValue

Experiment

Write a function that compares two Rank values by comparing their raw values.

By default, Swift assigns the raw values starting at zero and incrementing by one each time, but you can change this behavior by explicitly specifying values. In the example above, Ace is explicitly given a raw value of 1, and the rest of the raw values are assigned in order. You can also use strings or floating-point numbers as the raw type of an enumeration. Use the rawValue property to access the raw value of an enumeration case.

Use the init?(rawValue:) initializer to make an instance of an enumeration from a raw value. It returns either the enumeration case matching the raw value or nil if there is no matching Rank.

  1. ifletconvertedRank = Rank(rawValue: 3) {
  2. letthreeDescription = convertedRank.simpleDescription()
  3. }

The case values of an enumeration are actual values, not just another way of writing their raw values. In fact, in cases where there isn’t a meaningful raw value, you don’t have to provide one.

  1. enumSuit {
  2. casespades, hearts, diamonds, clubs
  3. funcsimpleDescription() -> String {
  4. switchself {
  5. case .spades:
  6. return'spades'
  7. case .hearts:
  8. return'hearts'
  9. case .diamonds:
  10. return'diamonds'
  11. case .clubs:
  12. return'clubs'
  13. }
  14. }
  15. }
  16. lethearts = Suit.hearts
  17. letheartsDescription = hearts.simpleDescription()

Experiment

Add a color() method to Suit that returns “black” for spades and clubs, and returns “red” for hearts and diamonds.

Notice the two ways that the hearts case of the enumeration is referred to above: When assigning a value to the hearts constant, the enumeration case Suit.hearts is referred to by its full name because the constant doesn’t have an explicit type specified. Inside the switch, the enumeration case is referred to by the abbreviated form .hearts because the value of self is already known to be a suit. You can use the abbreviated form anytime the value’s type is already known.

If an enumeration has raw values, those values are determined as part of the declaration, which means every instance of a particular enumeration case always has the same raw value. Another choice for enumeration cases is to have values associated with the case—these values are determined when you make the instance, and they can be different for each instance of an enumeration case. You can think of the associated values as behaving like stored properties of the enumeration case instance. For example, consider the case of requesting the sunrise and sunset times from a server. The server either responds with the requested information, or it responds with a description of what went wrong.

  1. enumServerResponse {
  2. caseresult(String, String)
  3. casefailure(String)
  4. }
  5. letsuccess = ServerResponse.result('6:00 am', '8:09 pm')
  6. letfailure = ServerResponse.failure('Out of cheese.')
  7. switchsuccess {
  8. caselet .result(sunrise, sunset):
  9. print('Sunrise is at (sunrise) and sunset is at (sunset).')
  10. caselet .failure(message):
  11. print('Failure... (message)')
  12. }
  13. // Prints 'Sunrise is at 6:00 am and sunset is at 8:09 pm.'

Experiment

Add a third case to ServerResponse and to the switch.

Notice how the sunrise and sunset times are extracted from the ServerResponse value as part of matching the value against the switch cases.

Use struct to create a structure. Structures support many of the same behaviors as classes, including methods and initializers. One of the most important differences between structures and classes is that structures are always copied when they are passed around in your code, but classes are passed by reference.

  1. structCard {
  2. varrank: Rank
  3. varsuit: Suit
  4. funcsimpleDescription() -> String {
  5. return'The (rank.simpleDescription()) of (suit.simpleDescription())'
  6. }
  7. }
  8. letthreeOfSpades = Card(rank: .three, suit: .spades)
  9. letthreeOfSpadesDescription = threeOfSpades.simpleDescription()

Experiment

Write a function that returns an array containing a full deck of cards, with one card of each combination of rank and suit.

Protocols and Extensions¶

Swift Slot Machine Tutorial Download

Use protocol to declare a protocol.

  1. protocolExampleProtocol {
  2. varsimpleDescription: String { get }
  3. mutatingfuncadjust()
  4. }

Classes, enumerations, and structs can all adopt protocols.

  1. classSimpleClass: ExampleProtocol {
  2. varsimpleDescription: String = 'A very simple class.'
  3. varanotherProperty: Int = 69105
  4. funcadjust() {
  5. simpleDescription += ' Now 100% adjusted.'
  6. }
  7. }
  8. vara = SimpleClass()
  9. a.adjust()
  10. letaDescription = a.simpleDescription
  11. structSimpleStructure: ExampleProtocol {
  12. varsimpleDescription: String = 'A simple structure'
  13. mutatingfuncadjust() {
  14. simpleDescription += ' (adjusted)'
  15. }
  16. }
  17. varb = SimpleStructure()
  18. b.adjust()
  19. letbDescription = b.simpleDescription

Experiment

Add another requirement to ExampleProtocol. What changes do you need to make to SimpleClass and SimpleStructure so that they still conform to the protocol?

Notice the use of the mutating keyword in the declaration of SimpleStructure to mark a method that modifies the structure. The declaration of SimpleClass doesn’t need any of its methods marked as mutating because methods on a class can always modify the class.

Use extension to add functionality to an existing type, such as new methods and computed properties. You can use an extension to add protocol conformance to a type that is declared elsewhere, or even to a type that you imported from a library or framework.

  1. extensionInt: ExampleProtocol {
  2. varsimpleDescription: String {
  3. return'The number (self)'
  4. }
  5. mutatingfuncadjust() {
  6. self += 42
  7. }
  8. }
  9. print(7.simpleDescription)
  10. // Prints 'The number 7'

Experiment

Write an extension for the Double type that adds an absoluteValue property.

Swift Slot Machine Tutorial Software

You can use a protocol name just like any other named type—for example, to create a collection of objects that have different types but that all conform to a single protocol. When you work with values whose type is a protocol type, methods outside the protocol definition are not available.

  1. letprotocolValue: ExampleProtocol = a
  2. print(protocolValue.simpleDescription)
  3. // Prints 'A very simple class. Now 100% adjusted.'
  4. // print(protocolValue.anotherProperty) // Uncomment to see the error

Even though the variable protocolValue has a runtime type of SimpleClass, the compiler treats it as the given type of ExampleProtocol. This means that you can’t accidentally access methods or properties that the class implements in addition to its protocol conformance.

Error Handling¶

You represent errors using any type that adopts the Error protocol.

  1. enumPrinterError: Error {
  2. caseoutOfPaper
  3. casenoToner
  4. caseonFire
  5. }

Use throw to throw an error and throws to mark a function that can throw an error. If you throw an error in a function, the function returns immediately and the code that called the function handles the error.

  1. funcsend(job: Int, toPrinterprinterName: String) throws -> String {
  2. ifprinterName'Never Has Toner' {
  3. throwPrinterError.noToner
  4. }
  5. return'Job sent'
  6. }

There are several ways to handle errors. One way is to use do-catch. Inside the do block, you mark code that can throw an error by writing try in front of it. Inside the catch block, the error is automatically given the name error unless you give it a different name.

  1. do {
  2. letprinterResponse = trysend(job: 1040, toPrinter: 'Bi Sheng')
  3. print(printerResponse)
  4. } catch {
  5. print(error)
  6. }
  7. // Prints 'Job sent'

Experiment

Change the printer name to 'NeverHasToner', so that the send(job:toPrinter:) function throws an error.

You can provide multiple catch blocks that handle specific errors. You write a pattern after catch just as you do after case in a switch.

  1. do {
  2. letprinterResponse = trysend(job: 1440, toPrinter: 'Gutenberg')
  3. print(printerResponse)
  4. } catchPrinterError.onFire {
  5. print('I'll just put this over here, with the rest of the fire.')
  6. } catchletprinterErrorasPrinterError {
  7. print('Printer error: (printerError).')
  8. } catch {
  9. print(error)
  10. }
  11. // Prints 'Job sent'

Experiment

Swift Slot Machine Tutorial For Beginners

Add code to throw an error inside the do block. What kind of error do you need to throw so that the error is handled by the first catch block? What about the second and third blocks?

Another way to handle errors is to use try? to convert the result to an optional. If the function throws an error, the specific error is discarded and the result is nil. Otherwise, the result is an optional containing the value that the function returned.

  1. letprinterSuccess = try? send(job: 1884, toPrinter: 'Mergenthaler')
  2. letprinterFailure = try? send(job: 1885, toPrinter: 'Never Has Toner')

Use defer to write a block of code that is executed after all other code in the function, just before the function returns. The code is executed regardless of whether the function throws an error. You can use defer to write setup and cleanup code next to each other, even though they need to be executed at different times.

  1. varfridgeIsOpen = false
  2. letfridgeContent = ['milk', 'eggs', 'leftovers']
  3. funcfridgeContains(_food: String) -> Bool {
  4. fridgeIsOpen = true
  5. defer {
  6. fridgeIsOpen = false
  7. }
  8. letresult = fridgeContent.contains(food)
  9. returnresult
  10. }
  11. fridgeContains('banana')
  12. print(fridgeIsOpen)
  13. // Prints 'false'

Generics¶

Write a name inside angle brackets to make a generic function or type.

  1. funcmakeArray<Item>(repeatingitem: Item, numberOfTimes: Int) -> [Item] {
  2. varresult = [Item]()
  3. for_in0..<numberOfTimes {
  4. result.append(item)
  5. }
  6. returnresult
  7. }
  8. makeArray(repeating: 'knock', numberOfTimes: 4)

You can make generic forms of functions and methods, as well as classes, enumerations, and structures.

  1. // Reimplement the Swift standard library's optional type
  2. enumOptionalValue<Wrapped> {
  3. casenone
  4. casesome(Wrapped)
  5. }
  6. varpossibleInteger: OptionalValue<Int> = .none
  7. possibleInteger = .some(100)
Swift slot machine tutorial software

Use where right before the body to specify a list of requirements—for example, to require the type to implement a protocol, to require two types to be the same, or to require a class to have a particular superclass.

  1. funcanyCommonElements<T: Sequence, U: Sequence>(_lhs: T, _rhs: U) -> Bool
  2. whereT.Element: Equatable, T.ElementU.Element
  3. {
  4. forlhsIteminlhs {
  5. forrhsIteminrhs {
  6. iflhsItemrhsItem {
  7. returntrue
  8. }
  9. }
  10. }
  11. returnfalse
  12. }
  13. anyCommonElements([1, 2, 3], [3])

Experiment

Modify the anyCommonElements(_:_:) function to make a function that returns an array of the elements that any two sequences have in common.

Writing <T:Equatable> is the same as writing <T>...whereT:Equatable.

Comments are closed.