2014-02-16 103 views
3

我正試圖改變幾個SKLabelNodes上的字距。我試着使用一些代碼從另一個答案:是否可以在SKLabelNode中使用NSMutableAttributedString?

NSMutableAttributedString *attributedString; 
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Please get wider"]; 
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(10, 5)]; 
[self.label setAttributedText:attributedString]; 

這是不允許的:

[myLabelNode setAttributedText:attributedString]; 

而且這並不在我所做的更改進行:

myLabelNode.text = attributedString.string; 

是有可能改變SKLabelNode上的字距?

+3

quick answer:nope – LearnCocos2D

回答

0

從iOS 11開始,NSAttributedStrings在SKLabelNode中受支持。所以現在應該可以使用字距和其他選項。