Objective C:如何从其他方法调用变量

发布于 2024-09-16 01:44:51 字数 155 浏览 7 评论 0原文

编写使用 UISlider 类的 iPhone 应用程序。

Slider 在其方法中返回一些值。

我想在另一个方法中使用该值...但由于该值是滑块方法的局部变量,我将如何执行此操作?

关键字“static”似乎不起作用,因为滑块值不是恒定的......

Writing an iPhone App that uses the UISlider class.

The Slider returns some value in its method.

I want to use that value in another method...but since that value is a local variable for the slider method, how would I go about doing this?

The keyword "static" doesnt seem to work because the slider value is not constant...

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

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

发布评论

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

评论(1

夜无邪 2024-09-23 01:44:51

在主类中创建 UISlider 类的实例。然后使用该实例来访问 Slider 的当前值。
这可能会有所帮助:UISlider 示例

Create an instance of UISlider class in your main class. And then use that instance to access the current value of Slider.
This may help:UISlider example

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