0

我有一个UILabel通过解析为其分配文本的文本。其中的文本UILabel将采用1234567890格式,但我希望它为(123) 456-7890 .

我该怎么做。有什么办法吗

请帮我

4

1 回答 1

0
 NSString *s = @"1234567890";
    NSMutableString *mu = [NSMutableString stringWithString:s];
    [mu insertString:@"(" atIndex:0];
    [mu insertString:@")" atIndex:4];
    [mu insertString:@" " atIndex:5];
    [mu insertString:@"-" atIndex:9];
     NSLog(@" s == %@ ", mu);
yourlable.text = mu;
于 2013-03-19T06:57:32.487 回答