From facc49062e56a984cf073cb485cfd9c797840a8f Mon Sep 17 00:00:00 2001 From: Adrian Schoenig Date: Fri, 13 Sep 2019 16:27:34 +0200 Subject: [PATCH] Compile fix --- Classes/ASWeekSelectorView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/ASWeekSelectorView.m b/Classes/ASWeekSelectorView.m index 05b258a..90cef59 100644 --- a/Classes/ASWeekSelectorView.m +++ b/Classes/ASWeekSelectorView.m @@ -84,7 +84,7 @@ - (void)setSelectedDate:(NSDate *)selectedDate animated:(BOOL)animated completion: ^(BOOL finished) { self.isAnimating = NO; - [self colorLabelForDate:self._selectedDate withTextColor:self.selectorLetterTextColor]; + [self colorLabelForDate:selectedDate withTextColor:self.selectorLetterTextColor]; }]; } } @@ -513,7 +513,7 @@ - (void)animateSelectionToPreDrag ^{ self.selectionView.frame = selectionViewFrame; } completion:^(BOOL finished) { - [self colorLabelForDate:self._selectedDate withTextColor:self.selectorLetterTextColor]; + [self colorLabelForDate:self.selectedDate withTextColor:self.selectorLetterTextColor]; }]; self.preDragOffsetX = MAXFLOAT;