We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the section of https://github.com/objc-zen/objc-zen-book#constants, we should not use static for NotificationName, or we can' t extern it for other code. For example:
//a.h extern static NSString *const TestConstNotificationName;
//a.m static NSString *const TestConstNotificationName = @"TestConstNotificationName";
This won't pass compile.
On other hand, a constant will be init in the global memory area. So it doesn't need a static key word.
static
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the section of https://github.com/objc-zen/objc-zen-book#constants, we should not use static for NotificationName, or we can' t extern it for other code. For example:
This won't pass compile.
On other hand, a constant will be init in the global memory area. So it doesn't need a
static
key word.The text was updated successfully, but these errors were encountered: