你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS如何將字符串中特定後的字變成紅色

iOS如何將字符串中特定後的字變成紅色

編輯:IOS開發綜合

一,效果圖。

二,代碼。

ViewController.m

- (void)viewDidLoad {
  [super viewDidLoad];
  // Do any additional setup after loading the view, typically from a nib.
  UILabel *testLabel=[[UILabel alloc]initWithFrame:CGRectMake(10, 100, 100, 50)];
  testLabel.text=@"1234567890";
  testLabel.backgroundColor=[UIColor orangeColor];
  [self.view addSubview:testLabel];
  [self redXingWithLabel:testLabel atIndex:2];
}
//將字符串特定的1個字變成紅色
- (void)redXingWithLabel:(UILabel *)tempLabel atIndex:(NSInteger)tempIndex {
  NSMutableAttributedString * tempString = [[NSMutableAttributedString alloc] initWithString: tempLabel.text];
  [tempString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(tempIndex, 1)];
  tempLabel.attributedText = tempString;
}

以上所述是小編給大家介紹的iOS如何將字符串中特定後的字變成紅色,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對本站網站的支持!

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved