diff options
author | Pratik Karki <predatoramigo@gmail.com> | 2018-06-14 21:49:44 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-14 21:49:44 +0545 |
commit | 44f9834b2c262bb6efcb727494a9109b8c26549d (patch) | |
tree | e1dd7e0014d79ba7fd05933144227cb0d5b3244d | |
parent | 650419844c0b4095545534c4846fcdb8eb355bc9 (diff) | |
parent | 2e7ecbae8a5f5484aa9c32efacb8e2847d8e2bac (diff) |
Merge pull request #3100 from chrisdusovic/master
[objective-c/en] Add missing block referred to in comment
-rw-r--r-- | objective-c.html.markdown | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/objective-c.html.markdown b/objective-c.html.markdown index 04c4e529..de3884af 100644 --- a/objective-c.html.markdown +++ b/objective-c.html.markdown @@ -731,7 +731,10 @@ if ([myClass conformsToProtocol:@protocol(CarUtilities)]) { /////////////////////////////////////// // Blocks are statements of code, just like a function, that are able to be used as data. // Below is a simple block with an integer argument that returns the argument plus 4. -int (^addUp)(int n); // Declare a variable to store the block. +^(int n) { + return n + 4; +} +int (^addUp)(int n); // Declare a variable to store a block. void (^noParameterBlockVar)(void); // Example variable declaration of block with no arguments. // Blocks have access to variables in the same scope. But the variables are readonly and the // value passed to the block is the value of the variable when the block is created. |