我有 2 个 ViewController,ViewController_A 和 ViewController_B。ViewController_A 有一个带有 doSlider 方法的滑块,如下所示。
- (void)doSlider:(float)value{
[viewController_B getValue:[slider_1 value]];
}
ViewController_B 有一个 getValue 方法,如下所示。
- (void)getValue:(float)value{
width = value;
NSLog(@"getValue %f", width);
}
当我在 ViewController_A 中拖动滑块时,ViewController_B 将打印出宽度值。但它似乎只在 getValue 方法中可用。我可以将宽度值传递给 ViewController_B 中的其他方法,例如 touchesMoved。谢谢。