Turgunov

Results 1 comments of Turgunov

@atalw I found a basic solution to this issue using delegates. ``` protocol FilterViewDelegate { func didChangeSubcategory(segmentedControl: UISegmentedControl) func didChangeAvailability(segmentedControl: UISegmentedControl) func didChangeQuality(segmentedControl: UISegmentedControl) } ``` ``` class CategoryView: YNDropDownView...