Skip to content

Instantly share code, notes, and snippets.

@anvarazizov
Last active August 29, 2015 14:02
Show Gist options
  • Save anvarazizov/7ebfdb3e7e0c2a2299de to your computer and use it in GitHub Desktop.
Save anvarazizov/7ebfdb3e7e0c2a2299de to your computer and use it in GitHub Desktop.
Custom setter features (MUST TO KNOW IT)
// Якщо ми створюємо власний сеттер і щось змінюємо в середині, то треба цю зміну дублювати у ініціалізації. Наприклад:
- (void)setFreeformGrid:(BOOL)freeformGrid
{
if (_freeformGrid != freeformGrid)
{
_freeformGrid = freeformGrid;
self.gridView.isGuidesVisible = _freeformGrid; // Цей шматок коду треба додати і в ініціалізацію, наприклад у метод - commonInit:
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment