Objective C:如何从其他方法调用变量
编写使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在主类中创建 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