Skip to Content
Cocoa Programming for OS X: The Big Nerd Ranch Guide
book

Cocoa Programming for OS X: The Big Nerd Ranch Guide

by Aaron Hillegass, Adam Preble, Nate Chandler
April 2015
Intermediate to advanced
556 pages
17h 47m
English
Big Nerd Ranch Guides
Content preview from Cocoa Programming for OS X: The Big Nerd Ranch Guide

For the More Curious: Functional Methods and Minimizing Closure Syntax

Although it is not a functional language, Swift has a number of features to support functional programming. In particular, the standard library includes the functions map, reduce, and filter. A full overview of these functions is beyond the scope of this book, but they can be very helpful in constructing clear code for common tasks.

Recall that the Employee class has a property, name, whose type is String?. Here’s how you might use these methods to create an array of all non-nil names:

let names = employees.filter({ employee in
    return employee.name != nil
}).map({ employee in
    return employee.name!
})

When the closure is the last parameter, however, the ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Cocoa with Objective-C, 4th Edition

Learning Cocoa with Objective-C, 4th Edition

Paris Buttfield-Addison, Jonathon Manning, Tim Nugent
Objective-C for Absolute Beginners: iPhone, iPad and Mac Programming Made Easy

Objective-C for Absolute Beginners: iPhone, iPad and Mac Programming Made Easy

Stefan Kaczmarek, Brad Lees, Gary Bennett, Mitch Fisher

Publisher Resources

ISBN: 9780134077130Purchase book