Skip to content

Instantly share code, notes, and snippets.

@98chimp
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save 98chimp/8082ece9c41c8c70ef27 to your computer and use it in GitHub Desktop.

Select an option

Save 98chimp/8082ece9c41c8c70ef27 to your computer and use it in GitHub Desktop.
Week02 - D04 Questions
Q1.
Q2. This code will maintain a strong reference to self which leads to a strong reference cycle and poor memory management. To avoid this problem, the code can be modified as follows:
[self setMySexyBlock:^{ [__weak self mySexyMethod]; }];
Q3.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment