/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
软件Tags: MacRadio控件编程辅助编程控件
MacRadio苹果单选按钮控件是一款UI控件,通过此款空间,用户们在编程的构成中能够快速的制作出所需的各类单选框,通过直接调用的方式就能够将单选框运用到自己的程序当中十分便捷,快来绿色资源网下载吧!
MacRadio是一款苹果作风的单选按钮控件,它具有默认单选按钮的基础功效,支撑分组,可方便快速的调换默认的单选按钮控件,应用简略,兼容性强,运行稳固,可用于大部份开发平台。
#import <UIKit/UIKit.h>
@protocol RadioButtonDelegate <NSObject>
-(void)radioButtonSelectedAtIndex:(NSUInteger)index inGroup:(NSString*)groupId;
@end
@interface ZYRadioButton : UIView{
NSString *_groupId;
NSUInteger _index;
UIButton *_button;
}
//GroupId
@property(nonatomic,retain)NSString *groupId;
//Group的索引
@property(nonatomic,assign)NSUInteger index;
//初始化RadioButton控件
-(id)initWithGroupId:(NSString*)groupId index:(NSUInteger)index;
//为
+(void)addObserverForGroupId:(NSString*)groupId observer:(id)observer;
@end
ZYViewController.m(视图控制器中的代理方法):
//代理方法
-(void)radioButtonSelectedAtIndex:(NSUInteger)index inGroup:(NSString *)groupId{
NSLog(@"changed to %d in %@",index,groupId);
}