加载视图时崩溃

发布于 2024-11-01 19:51:45 字数 489 浏览 3 评论 0 原文

我有一个名为设置的按钮,当我按下此按钮时,应用程序崩溃。

我对警告有疑问,这就是为什么我要向您展示我在构建时得到的内容:

 .../RechercherViewController.m:66: warning: 'UISlider' may not respond to '-setShowValue:'

该警告将我指向 viewDidLoad 方法中的这一行:

[rayonDeRechercheSlider setShowValue:YES];

rayonDeRechercheSlider is a UISlider 在 View 的 .h 文件中声明:

IBOutlet UISlider *rayonDeRechercheSlider;

I have a button named settings, when I press this button the application crashes.

I have doubt in warnings that's why I'm going to show you what I got when building:

 .../RechercherViewController.m:66: warning: 'UISlider' may not respond to '-setShowValue:'

that warning is pointing me at this line in the viewDidLoad method:

[rayonDeRechercheSlider setShowValue:YES];

rayonDeRechercheSlider is a UISlider declared in the .h file of the View :

IBOutlet UISlider *rayonDeRechercheSlider;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

允世 2024-11-08 19:51:45

UISlider 不使用名为 showValue 的布尔属性,并且 UISlider 也不提供任何名为 setShowValue: 的显式方法,因此方法调用:UISlider 上的 >setShowValue:YES 将使应用程序崩溃。

您可能需要调用 [rayonDeRechercheSlider setValue:1.0animated:YES] (将 1.0 替换为您想要设置的值。

UISlider does not use a boolean property called showValue and also UISlider does not offer any explicit method called setShowValue:, hence the method call: setShowValue:YES on a UISlider will crash the app.

You may want to call [rayonDeRechercheSlider setValue:1.0 animated:YES] (replace 1.0 with the value you intend to set.

以酷 2024-11-08 19:51:45

经过进一步研究,您可能会发现 setShowValue: 是一个有效的选择器。我遇到了这个名为 UISliderControl 的自定义类,

也许这就是什么你在找什么?

编辑:

更多信息

After a little further research of where you might have gotten the idea of setShowValue: being a valid selector. I ran across this custom class called UISliderControl

Maybe this is what you are looking for?

EDIT:

More Info

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文