例如,我有以下的代碼,其中lblPercent
是NSTextField
:如何在Objective-C的NSTextField中將char和int結合起來?
double Progress = progress(Points);
[lblPercent setIntValue:(Progress)];
我將其設置爲整數值,所以它扔出來的小數,由於某種原因,NSProgressIndicator
強迫我使用雙。無論如何,在進度條旁邊的標籤中,我希望它能看到數字x%和旁邊的百分號。
我試過標準的連接技術,但沒有骰子。
這給了我糟糕的接收器類型雙。 – 2013-04-23 15:26:55
[lblPercent setText:[NSString stringWithFormat:@「%f %%」,Progress]] ?? – alex 2013-04-23 15:44:01
好的進展!我得到關於**的錯誤沒有可見的@interface爲NSTextField在setText中聲明** – 2013-04-23 15:55:46