例如,我想将变量传递给 UIButton 操作
NSString *string=@"one";
[downbutton addTarget:self action:@selector(action1:string)
forControlEvents:UIControlEventTouchUpInside];
我的动作功能是这样的:
-(void) action1:(NSString *)string{
}
但是,它返回语法错误。如何将变量传递给 UIButton 动作?