本文實例為年夜家分享了特別字符調換德律風號碼中某一部門的辦法,IOS應用-號調換德律風號碼中央四位,供年夜家參考,詳細內容以下
1、後果圖
2、代碼
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]; }
以上就是本文的全體內容,願望對年夜家的進修有所贊助,也願望年夜家多多支撐本站。
【IOS若何調換德律風號碼中央4位為"-"符號】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!