how to detect is NSMutableAttributedString attribute NSStrikethroughStyleAttributeName available to use?

StackOverflow https://stackoverflow.com/questions/18254393

Pergunta

I mean detect is i'm able to use attribute NSStrikethroughStyleAttributeName ofNSMutableAttributedString like:

if ([object responseToSelector:@selector(someSelector)])

or like:

if ([SomeNewClass class])

i don't wan't compare system version, but i wan't check exactly this item;

Foi útil?

Solução

NSStrikethroughStyleAttributeName is available from iOS 6 so if you are supporting 6 and above you have no worries.

Apple also uses weak linking. This sets symbols that aren't available in the current version of the OS to NULL. So, you can test the symbol to see if it exists with:

if (NSStrikethroughStyleAttributeName != nil) {
    // use NSStrikethroughStyleAttributeName
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top