如何从另一个类将 float 传递给 ProgressView?
我正在尝试向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该有效。如果您使用
NSNumber
来保存该值,则可以使用[myNSNumber floatValue];
来获取其浮点表示形式。Should work. If you're using an
NSNumber
to hold the value, you can use[myNSNumber floatValue];
to get its float representation.