Check if string constant exists in Objective-C

How to check if a string constant is defined in Objective-C?

Use UIViewControllerShowDetailTargetDidChangeNotificationin iOS 7 crashes.

+4
source share
1 answer
if (&UIViewControllerShowDetailTargetDidChangeNotification) {
    // ... safe to use ...
}
+5
source

All Articles