Всем привет!
Встретился вот такой вопрос в тесте brainbench "iOS 5 Development". Кто-нибудь вообще знает, про что идет речь? Я вот не в курсе.
Which code do you use to determine if the keyword OSNewKeyword is supported in the current version of iOS?
Choice 1
if (&OSNewKeyword != nil)
Choice 2
if (keywordIsSupported(OSNewKeyword))
Choice 3
if (OSNewKeyword* != nil)
Choice 4
if (OSNewKeyword)
Choice 5
if (checkForKeyword(@"OSNewKeyword") == YES)
Вот
здесь что-то есть, но это, по-моему, явно не то...