Skip to content

Instantly share code, notes, and snippets.

@loganwright
Created May 24, 2014 03:38
Show Gist options
  • Save loganwright/78f02ffe20907f35b758 to your computer and use it in GitHub Desktop.
Save loganwright/78f02ffe20907f35b758 to your computer and use it in GitHub Desktop.
C-Type Struct With Objective-C Objects
typedef void (^CompletionBlock)(void);
typedef struct {
SEL selector;
__unsafe_unretained id object;
__unsafe_unretained NSArray * arguments;
__unsafe_unretained CompletionBlock completionBlock;
} ExecutableOperationStruct ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment