Last active
August 29, 2015 14:02
-
-
Save anvarazizov/7ebfdb3e7e0c2a2299de to your computer and use it in GitHub Desktop.
Custom setter features (MUST TO KNOW IT)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Якщо ми створюємо власний сеттер і щось змінюємо в середині, то треба цю зміну дублювати у ініціалізації. Наприклад: | |
- (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