我有一个UILabel
通过解析为其分配文本的文本。其中的文本UILabel
将采用1234567890
格式,但我希望它为(123) 456-7890
.
我该怎么做。有什么办法吗
请帮我
我有一个UILabel
通过解析为其分配文本的文本。其中的文本UILabel
将采用1234567890
格式,但我希望它为(123) 456-7890
.
我该怎么做。有什么办法吗
请帮我
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;