// // RadioButton.h // RadioButton // // Created by ohkawa on 11/03/23. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import @protocol RadioButtonDelegate -(void)radioButtonSelectedAtIndex:(NSUInteger)index inGroup:(NSString*)groupId; @end @interface RadioButton : UIView { NSString *_groupId; NSUInteger _index; UIButton *_button; } @property(nonatomic,retain)NSString *groupId; @property(nonatomic,assign)NSUInteger index; -(id)initWithGroupId:(NSString*)groupId index:(NSUInteger)index; +(void)addObserverForGroupId:(NSString*)groupId observer:(id)observer; @end