Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nikolasburk/delegates_and_callbacks

Demonstrate the use of delegates and callbacks by means of a custom view that communicates with its owner through either of these patterns
https://github.com/nikolasburk/delegates_and_callbacks

Last synced: 25 days ago
JSON representation

Demonstrate the use of delegates and callbacks by means of a custom view that communicates with its owner through either of these patterns

Awesome Lists containing this project

README

        

### Delegates and Callbacks

This app demonstrates how to write a TicTacToe-Board as a custom `UIView`.

It implements two approaches as to how the `Board` talks back to its owner:

1. Delegates
2. Callbacks