我需要从对象中删除一个动作,然后添加一个新动作。
我已使用此代码添加新操作:
[Button addTarget:self action:@selector(newAction:) forControlEvents:UIControlEventTouchUpInside];
然后我尝试使用此代码删除旧操作:
[Button removeTarget:self action:@selector(oldAction:) forControlEvents:UIControlEventTouchUpInside];
问题是它也以某种方式删除了 newAction。
有任何想法吗?
提前致谢 :)