SEL twoArgumentSelector = @selector(methodWithTwoArguments:and:);
[newsButton addTarget:self action:@selector(twoArgumentSelector) forControlEvents:UIControlEventTouchUpInside];
-(void)methodWIthTwoArguments:(id)argumentOne and:(id)argumentTwo;
我已经看到了一些示例,它们可以让您在选择器中使用两个参数。在上面的代码中怎么做?提前。