Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做的就是如题一样。原因是,我无法自定义下面按钮的视图,所以我打算在这个按钮上再放一个可以自己自定义的按钮。而当我触摸上一个时,会触发下一个的事件。
假设有两个 UIButton A 和 B。
在A的触摸事件(touchupinside)中添加如下代码:
[buttonObjectB sendActionsForControlEvents: UIControlEventTouchUpInside];
这将根据您的需要触发第二个按钮的触摸事件。