issues
search
escoz
/
QuickDialog
QuickDialog - Quick and easy dialog screens for iOS
http://escoz.com/open-source/quickdialog
Other
3.07k
stars
637
forks
source link
How to change the QRadioElement selected item's background color?
#608
Open
kevineves
opened
10 years ago
kevineves
commented
10 years ago
I tried this below, but it doesn't work :(
(QRootElement
)createOrderAddForm { ...... QRadioElement
ele= [[QRadioElement alloc] init]; [self setTheme:ele]; ...... }
(void)setTheme:(QElement
)element { QAppearance
apperance = [QElement appearance]; UIView *v = [[UIView alloc] init]; v.backgroundColor = [UIColor blackColor]; apperance.selectedBackgroundView = v; }
I tried this below, but it doesn't work :(