label设置不同颜色 不同字体

  NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:@"我的应用 (按住拖动调整排序)"];

NSRange grayRange = NSMakeRange([[noteStr string] rangeOfString:@"(按住拖动调整排序)"].location, [[noteStr string] rangeOfString:@"(按住拖动调整排序)"].length);

        [noteStr addAttribute:NSForegroundColorAttributeName value:[UIColor colorWithHexString:@"#999999"] range:grayRange];

        [noteStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12] range:grayRange];

        reusableView.title setAttributedText:noteStr];

你可能感兴趣的:(iOS)