Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nikolasburk/delegates_and_callbacks
- Owner: nikolasburk
- Created: 2016-06-30T20:42:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-17T12:18:08.000Z (about 8 years ago)
- Last Synced: 2024-10-02T17:21:17.703Z (about 1 month ago)
- Language: Swift
- Size: 996 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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