Skip to content

Instantly share code, notes, and snippets.

@Duraiamuthan
Created September 27, 2013 14:08
Show Gist options
  • Save Duraiamuthan/6729138 to your computer and use it in GitHub Desktop.
Save Duraiamuthan/6729138 to your computer and use it in GitHub Desktop.
to mark a method as unavailable
#import <Foundation/Foundation.h>
@interface SampleClass : NSObject
- (id)init __attribute__((unavailable("init is unavailable")));
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment