cgcolor regcolor tttatribute.

        [mutableAttributedString addAttribute:(NSString *)(kCTForegroundColorAttributeName) value:(id)RGBCOLOR(142, 142, 142).CGColor range:beforeRange];

 

 

-(void)adjustColor:(MedicineView *)medicineView

{

    [medicineView.contentLabel setText:medicineView.contentLabel.text afterInheritingLabelAttributesAndConfiguringWithBlock:^ NSMutableAttributedString *(NSMutableAttributedString *mutableAttributedString) {

        

        NSRange beforeRange = NSMakeRange(0, 3);

        [mutableAttributedString addAttribute:(NSString *)(kCTForegroundColorAttributeName) value:(id)RGBCOLOR(142, 142, 142).CGColor range:beforeRange];

      

        return mutableAttributedString;

    }];

    

        

    

 

}

posted @ 2013-06-21 11:38  路在脚下,  阅读(276)  评论(0编辑  收藏  举报