我想在Unit Test code
中触发testButton的TouchUpInside事件,但似乎无效。
- (void)testAction {
UIButton *testButton = [[UIButton alloc] init];
[testButton addTarget:self action:@selector(handleButtonEvent:)
forControlEvents:UIControlEventTouchUpInside];
[testButton sendActionsForControlEvents:UIControlEventTouchUpInside];
}
只是不知道如何修复这个错误。