Skip to content

Instantly share code, notes, and snippets.

@beelsebob
Forked from kmussel/gist:2925767
Created June 13, 2012 18:57
Show Gist options
  • Select an option

  • Save beelsebob/2925781 to your computer and use it in GitHub Desktop.

Select an option

Save beelsebob/2925781 to your computer and use it in GitHub Desktop.
// For ARC
__block __weak typeof(pitem) bpitem = pitem;
pitem.urlBlock = ^{
bpitem.isExpanded = !bpitem.isExpanded;
[self.controller expandCellWithPost:bpitem.post type:bpitem.expanded];
};
// For Non-ARC
__block typeof(pitem) bpitem = pitem;
pitem.urlBlock = ^{
bpitem.isExpanded = !bpitem.isExpanded;
[self.controller expandCellWithPost:bpitem.post type:bpitem.expanded];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment