Texte UILabel barré avec la couleur

J'utilise le code suivant pour barrer le texte

NSMutableAttributedString *attributeString = [[NSMutableAttributedString alloc] initWithString:(text ? text : @"")];
[attributeString addAttribute:NSStrikethroughStyleAttributeName
                        value:@2
                        range:NSMakeRange(0, [attributeString length])];

label.attributedText = attributeString;

Le texte est de couleur blanche de sorte que le barré en ligne est également blanc. Je voudrais changer que le rouge. Comment puis-je le faire?

source d'informationauteur Zia