我正在尝试在Xcode中为计算器编写一个单元测试用例,目前我正在为 add 函数编写测试用例。
这是我的数字按下功能:
- (IBAction)digitPressed:(UIButton *)sender.
我看过一个例子,如果方法名称是
- (IBAction)digitPressed:(id)sender,
您可以在视图标签的帮助下调用该函数,例如
[calc_view_controller digitPressed:[calc_view viewWithTag:6];
上面在实现部分定义的实例为
app_delegate = [[UIApplication sharedApplication] delegate];
calc_view_controller = app_delegate.viewController;
calc_view = calc_view_controller.view;
现在因为我的按钮类型是(UIButton *
)我不能使用view
标签,还有其他UIButton
类型的替代品吗?
如果是这样,你能给我举个例子吗?