Skip to content

Instantly share code, notes, and snippets.

@MrTwo

MrTwo/Async.m Secret

Created January 15, 2015 03:47
IntPointer Scope in OC with Block
void (^block2)(NSUInteger *) = ^(NSUInteger *count){
(*count)--;
NSLog(@"\nblock2:\n*count: %d\ncount: %x", *count, count);
};
void (^block1)(NSUInteger *) = ^(NSUInteger *count){
NSLog(@"\nblock1:\n*count: %d\ncount: %x", *count, count);
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
sleep(3);
block2(count);
});
};
NSUInteger count = 4;
block1(&count);
void (^block2)(NSUInteger *) = ^(NSUInteger *count){
(*count)--;
NSLog(@"\nblock2:\n*count: %d\ncount: %x", *count, count);
};
void (^block1)(NSUInteger *) = ^(NSUInteger *count){
NSLog(@"\nblock1:\n*count: %d\ncount: %x", *count, count);
sleep(3);
block2(count);
};
NSUInteger count = 4;
block1(&count);
@MrTwo
Copy link
Author

MrTwo commented Jan 15, 2015

Async.m's result is not expected

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment