我有两个UIButton。一个在另一个之上(想想就像一个子标签)。但第二个UIButton阻止了他父母的触摸。所以我想从父母的子按钮上附加Touch处理。
在其他语言中,我只是做object.event = object2.event
,但我无法想象如何在obj-c中做到这一点。
我试试这个:
NSSet *t = [self.backgroundView allTargets];
NSArray *touch = [self.backgroundView actionsForTarget:self.backgroundView forControlEvent:UIControlEventTouchUpInside];
但两个结构都是空的。