我是iOS开发的初学者。我有一个自定义视图:
@interface MyView : UIView {
在 ViewController 中,我将此视图添加为子视图(以另一种方式做会更好,也许在 Storyboard 中?):
MyView *myView = [[MyView alloc]initWithFrame:myFrame];
[self.view addSubview:myView];
在其中,我跟随屏幕上的触摸,我有一个 touchesEnded 方法:
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
// myValue is a class variable of MyView
myValue = doSomething();
}
现在,如何获取myValue
ViewController 中的值?也许可以touchesEnded
在 MyView 内部调用的侦听器或回调?