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上的字距?
quick answer:nope – LearnCocos2D