// // RadioButton.h // GoldRich // // Created by WindShan on 2017/2/15. // Copyright © 2017年 WindShan. All rights reserved. // #import @protocol RadioButtonDelegate @optional - (void)didSelectedRadioButton:(id)sender groupId:(NSString *)groupId; @end @interface RadioButton : UIButton @property(nonatomic, assign)id delegate; @property(nonatomic, copy, readonly)NSString *groupId; @property(nonatomic, assign)BOOL checked; - (id)initWithDelegate:(id)delegate groupId:(NSString*)groupId; - (void)setImageName:(NSString *)normalName selImage:(NSString *)selName; @end