如何在iOS的Xcode中将float从0..1转换为0到255的整数?谢谢! 最佳答案 float number = [slider value]; int value = (int)(number * 255)