We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Updated Passing Data Propagating Events (markdown)
Move to https://
use present(viewControllerToPresent..) now
Fix to dismiss now
Use #selector now
changed variable name to its declared name. i.e., letterButton to button
Many global functions have been replaced by protocol extension methods, a new feature of Swift 2, so enumerate() is now an extension method for SequenceType: extension SequenceType { func enumerate() -> EnumerateSequence<Self> } and used as let mySwiftStringArray = [ "foo", "bar" ] for (index, string) in mySwiftStringArray.enumerate() { print(string) }
Update delegate pattern
Remove doctoc and update heading
Added UITableViewDataSource example
Syntax highlight keyword self
Simple language edits for target-action
Updated the target-action section with new code snippet explaining the method 'addTarget' and its parameters.
Removed Storyboards, KVO references
Typos and broken links
Form Input and Event Handling