答案 0 :(得分:2)
您可以使用NSMutableAttributedString
,然后将其添加到[button setAttributedTitle:attString forState:UIControlStateNormal];
要更改属性字符串中范围的颜色,请阅读this,基本上只是属性字典中的一个
阅读此SO Question
答案 1 :(得分:0)
我使用下面的代码解决了我的问题
对于WebElement element= driver.findElement(By.xpath("YOUR Locator"));
JavascriptExecutor executor = (JavascriptExecutor) driver;
executor.executeScript("arguments[0].click();", element);
UILabel
NSMutableAttributedString *text =
[[NSMutableAttributedString alloc]
initWithAttributedString: self.lblFriendBand.attributedText];
[text addAttribute:NSForegroundColorAttributeName
value:[UIColor redColor]
range:NSMakeRange(1, 2)];
[self.lblFriendBand setAttributedText: text];
UIButton