编程开发

展开

MacRadio(ios单选按钮控件) v1.0 免费版

大小:13KB语言:中文 类别:编程开发系统:WinAll, WinXP, Win7, Win8
简介|教程|评论(0)
软件性质:国产软件时间:2022-03-21 11:39:42

标签: MacRadio控件编程辅助编程控件

软件介绍

MacRadio苹果单选按钮控件是一款UI控件,通过此款空间,用户们在编程的构成中能够快速的制作出所需的各类单选框,通过直接调用的方式就能够将单选框运用到自己的程序当中十分便捷,快来绿色资源网下载吧!

MacRadio控件官方介绍

MacRadio是一款苹果作风的单选按钮控件,它具有默认单选按钮的基础功效,支撑分组,可方便快速的调换默认的单选按钮控件,应用简略,兼容性强,运行稳固,可用于大部份开发平台。

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);

}

加载全部内容

热门推荐
推荐教程
猜你喜欢
相关合集
用户评论
本类排行