how to detect is NSMutableAttributedString attribute NSStrikethroughStyleAttributeName available to use?

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

Pregunta

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;

¿Fue útil?

Solución

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 bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top