Skip to content

Instantly share code, notes, and snippets.

@kmussel
Created June 13, 2012 18:53
Show Gist options
  • Save kmussel/2925767 to your computer and use it in GitHub Desktop.
Save kmussel/2925767 to your computer and use it in GitHub Desktop.
PostTableItem *pitem = [PostTableItem itemWithPost:post
dataSource:self
expanded:expanded
withBlock:nil];
pitem.urlBlock = ^{
[self.controller expandCellWithPost:post type:!expanded];
};
SECOND WAY:
pitem.urlBlock = ^{
pitem.isExpanded = !pitem.isExpanded;
[self.controller expandCellWithPost:pitem.post type:pitem.expanded];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment