- Introduction to Functional Programming Johannes Weiß - https://vimeo.com/100786088
- ReactiveCocoa at MobiDevDay Andrew Sardone - https://vimeo.com/65637501
- The Future Of ReactiveCocoa Justin Spahr-Summers - https://www.youtube.com/watch?v=ICNjRS2X8WM
- Enemy of the State Justin Spahr-Summers - https://www.youtube.com/watch?v=7AqXBuJOJkY
- WWDC 2014 Session 229 - Advanced iOS Application Architecture and Patterns Andy Matuschak - https://developer.apple.com/videos/play/wwdc2014/229/
- Functioning as a Functionalist Andy Matuschak - https://www.youtube.com/watch?v=rJosPrqBqrA
- Controlling Complexity in Swift Andy Matuschak - https://realm.io/news/andy-matuschak-controlling-complexity/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // KBCollectionExtensions.h | |
| // | |
| // Created by Guy English on 25/02/08. | |
| // Copyright 2008 Kickingbear. All rights reserved. | |
| // | |
| #import <Cocoa/Cocoa.h> | |
| /* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** Block type used by tkvar_iterate_list. | |
| * | |
| * @param entry The current argument in the vararg list. | |
| */ | |
| typedef void (^TKVAR_Block)(id entry); | |
| /** | |
| * Iterate over a va_list, executing the specified code block for each entry. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if __has_feature(objc_arc) | |
| # if __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_5_0 | |
| # define block_unretained(obj) typeof(obj) _block_##obj __weak = (obj) | |
| # else | |
| # define block_unretained(obj) typeof(obj) _block_##obj __unsafe_unretained = (obj) | |
| # endif | |
| #else | |
| # define block_unretained(obj) typeof(obj) _block_##obj __block = (obj) | |
| #endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // NSInvocation+SimpleCreation.h | |
| // MAPI | |
| // | |
| // Created by Tiago Alves on 08/12/13. | |
| // Copyright (c) 2013 Iterar. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIView+DEFrameAdditions.h | |
| // | |
| // Copyright (c) 2011-2013 Double Encore, Inc. All rights reserved. | |
| // | |
| // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
| // Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
| // Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer | |
| // in the documentation and/or other materials provided with the distribution. Neither the name of the Double Encore Inc. nor the names of its | |
| // contributors may be used to endorse or promote products derived from this software without specific prior written permission. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Taken from the commercial iOS PDF framework http://pspdfkit.com. | |
| // Copyright (c) 2013 Peter Steinberger. All rights reserved. | |
| // Licensed under MIT (http://opensource.org/licenses/MIT) | |
| // | |
| // You should only use this in debug builds. It doesn't use private API, but I wouldn't ship it. | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> | |
| // Compile-time selector checks. |