yang-guang-girl

一,效果图。

二,代码。

RootViewController.m

复制代码
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    //电话号码
    UILabel *telLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 200, 20)];
    telLabel.textColor = [UIColor grayColor];
    telLabel.text = @"13793333281";
    //字符串的截取
    NSString *string = [telLabel.text substringWithRange:NSMakeRange(4,4)];
    //字符串的替换
    telLabel.text = [telLabel.text stringByReplacingOccurrencesOfString:string withString:@"----"];
    [self.view addSubview:telLabel];
}
复制代码

 

 

分类:

技术点:

相关文章:

  • 2021-12-07
  • 2021-11-27
  • 2021-12-07
  • 2022-01-13
  • 2021-11-27
  • 2021-11-25
  • 2021-12-02
  • 2021-11-24
猜你喜欢
  • 2021-11-27
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2021-11-15
  • 2021-11-27
相关资源
相似解决方案