0

这是代码:

float charlieSoundVolume;
charlieSoundVolume = [charlieSoundLevel floatValue];

NSRunAlertPanel(@"CHARLIE",charlieSoundVolume, @"", @"", @"Ok");

这给了我错误:'NSRunAlertPanel' 的参数 2 的类型不兼容

NSRunAlertPanel 不接受浮点数吗?

有任何想法吗??

以利亚

4

1 回答 1

2

我不知道为什么你会惊讶于它没有考虑到文档的浮动:

NSInteger NSRunAlertPanel (
   NSString *title,
   NSString *msg,
   NSString *defaultButton,
   NSString *alternateButton,
   NSString *otherButton,
   ...
);

传递一个字符串。

于 2010-07-04T03:22:53.097 回答