我想設置按鈕標題用下劃線和browncolor的:按鈕標題顏色
對於我做的:
NSMutableAttributedString *nearestLocation = [[NSMutableAttributedString alloc] initWithString:@"Locate Manually"];
[nearestLocation addAttribute:(NSString*)kCTUnderlineStyleAttributeName
value:[NSNumber numberWithInt:NSUnderlineStyleSingle]
range:(NSRange){0,[nearestLocation length]}];
[btn_manually setAttributedTitle:nearestLocation forState:UIControlStateNormal];
[btn_manually setTitleColor:[UIColor brownColor] forState:UIControlStateNormal];
它顯示下劃線,但不能browncolor。
你需要使用NSMutableAttributedString喜歡你的下劃線邏輯來設置顏色。 –