我有一个SEL
要在按钮选择器中设置的变量。
我的代码是这样的:
GridView *ObjGridView=[[GridView alloc]initWithFrame:frame];
[[NSBundle mainBundle ] loadNibNamed:@"GridView" owner:ObjGridView options:nil];
CATEGORY *ObjCategory=[arrCategory objectAtIndex:index];
//do something
ICON *ObjIcno=[ObjCategory.arrIconObjects objectAtIndex:indexIcon];
[ObjGridView.button1 addTarget:self action:ObjIcno.handler forControlEvents:UIControlStateNormal];
ObjIcno.handler
是一个 SEL 变量(之前由选择器设置)
像这样:
arrSectonProductivityTools=[NSMutableArray arrayWithObjects:[[[ICON alloc]initWithIcon:@"firefox.png":@"Firefox":@selector(FirefoxCickEvent:)] autorelease],nil];
我以这种方式在我的班级中设置了选择器,设置正确,但我没有收到点击事件。