escoz / QuickDialog

QuickDialog - Quick and easy dialog screens for iOS
http://escoz.com/open-source/quickdialog
Other
3.07k stars 637 forks source link

Unable to style QRadioElement selected value #622

Open luketheobscure opened 10 years ago

luketheobscure commented 10 years ago

On the QRadioElement, the selected value is the same color as the label. On narrow forms this is confusing. It looks like this may not have been intentional.

Lines 150-151 of QRadioElement.m:

cell.textField.textColor = self.enabled ? self.appearance.labelColorEnabled : self.appearance.labelColorDisabled;
cell.detailTextLabel.textColor = self.enabled ? self.appearance.entryTextColorEnabled : self.appearance.entryTextColorDisabled;

As far as I can tell, there is no cell.detailTextLabel. Maybe this was an oversight? I can make the change myself, just want to make sure I'm not missing something.