什么是在xcode中修复标签文本的正确方法?

时间:2014-06-14 05:26:49

标签: ios objective-c uilabel

这是我的代码:

[_HintLabel setText:[NSString stringWithFormat:@"%@", [lst_word objectAtIndex:nCurrentWord]]];

    [_HintLabel.stringByPaddingToLength:prlt.length withString: @"~" startingAtIndex:0];

但第二行代码不起作用,

如何修复它以便它起作用?

1 个答案:

答案 0 :(得分:1)

我相信你想要这个:

NSString *newText = [_HintLabel.text stringByPaddingToLength:prlt.length withString: @"~" startingAtIndex:0];
_HintLabel.text = newText;

BETWEEN - 如果数组中的对象已经是字符串,则问题的第1行不需要stringWithFormat:。只是做:

_HintLabel.text = lst_word[nCurrentWord];