0

在我的应用程序中,我使用在 Storyboard 中创建的 UISlider,并在相关 UIViewController 中作为 IBOutlet 连接。

当用户拿着 UISlider 并移动它时,我有几个动作发生。我通过创建 IBAction 并将 Storyboard UISlider 与“值更改”发送事件连接来调用它们 - 这是将 UISlider 与其 .h 文件 IBAction 连接时关联的默认“发送事件”。

现在,当用户最终离开 UISlider 时,我想做几件事。我应该使用哪个已发送事件?

4

1 回答 1

3
UIControlEventTouchUpInside

是你想要的那个。

于 2012-08-15T15:18:58.153 回答