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 并且我已经连接了 IBAction
- (IBAction)homeButtonPressed { NSLog(@"home");
}
检查它是否有效。当我按下按钮时,它会突出显示所有内容,所以我知道按钮正在被按下..但是 NSLog 没有打印.....
顺便说一句,用户交互已启用......
您确定将该方法与情节提要中的按钮事件 UIControlEventTouchUpInside 连接起来吗?如果是,请尝试删除按钮,再次创建并连接到该方法...(无法看到您的项目,这是我认为最快的解决方法)
这
(id)sender
不是只需要获取事件发送者的问题,而是该方法必须在没有它的情况下工作......