//
|
// RadioButton.h
|
// GoldRich
|
//
|
// Created by WindShan on 2017/2/15.
|
// Copyright © 2017年 WindShan. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
|
@protocol RadioButtonDelegate <NSObject>
|
|
@optional
|
|
- (void)didSelectedRadioButton:(id)sender groupId:(NSString *)groupId;
|
|
@end
|
|
@interface RadioButton : UIButton
|
|
@property(nonatomic, assign)id<RadioButtonDelegate> 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
|