説明を見る。00001
00009 #import <Foundation/Foundation.h>
00010
00011
00017 @interface MixiImageButtonView : UIImageView {
00019 id target_;
00020
00022 SEL action_;
00023
00025 id argument_;
00026 }
00027
00028 @property (nonatomic, assign) id target;
00029 @property (nonatomic, assign) SEL action;
00030 @property (nonatomic, retain) id argument;
00031
00038 - (void)addTarget:(id)target action:(SEL)action;
00039
00047 - (void)addTarget:(id)target action:(SEL)action withObject:(id)argument;
00048
00049 @end