如何从另一个类将 float 传递给 ProgressView?

发布于 2024-08-05 20:33:56 字数 111 浏览 6 评论 0原文

我正在尝试向 ProgressView 传递另一个类中进行的计算中的浮点数。我尝试通过将其转换为 NSDecimalNumber 来传递它,但当它到达目的地时我无法再次将其恢复为浮点数。一定有比这更好的方法。

I'm trying to pass ProgressView a float from a calculation made in another class. I've tried passing it by converting it to a NSDecimalNumber but I can't get it back to a float again when it reaches the destination. There's got to be a better way than this.

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

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

发布评论

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

评论(1

拍不死你 2024-08-12 20:33:56
myUIProgressView.value = someFloat; // where someFloat is just type float between 0.0..1.0

应该有效。如果您使用 NSNumber 来保存该值,则可以使用 [myNSNumber floatValue]; 来获取其浮点表示形式。

myUIProgressView.value = someFloat; // where someFloat is just type float between 0.0..1.0

Should work. If you're using an NSNumber to hold the value, you can use [myNSNumber floatValue]; to get its float representation.

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