如何将UIButton中的触摸事件分配给另一个?

时间:2011-07-10 16:49:30

标签: objective-c cocoa-touch ios4 event-handling

我有两个UIButton。一个在另一个之上(想想就像一个子标签)。但第二个UIButton阻止了他父母的触摸。所以我想从父母的子按钮上附加Touch处理。

在其他语言中,我只是做object.event = object2.event,但我无法想象如何在obj-c中做到这一点。

我试试这个:

    NSSet *t =  [self.backgroundView allTargets];
    NSArray *touch = [self.backgroundView actionsForTarget:self.backgroundView forControlEvent:UIControlEventTouchUpInside];

但两个结构都是空的。

0 个答案:

没有答案