From be60cf08466966e84a450c2d3dc1bad892fe3278 Mon Sep 17 00:00:00 2001 From: Anton Bukov Date: Fri, 18 Dec 2015 13:16:27 +0300 Subject: [PATCH] Implemented self method on EXTNil --- extobjc/EXTNil.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extobjc/EXTNil.m b/extobjc/EXTNil.m index 121e963a..55642c93 100644 --- a/extobjc/EXTNil.m +++ b/extobjc/EXTNil.m @@ -28,6 +28,10 @@ - (id)init { return self; } +- (instancetype)self { + return nil; +} + #pragma mark NSCopying - (id)copyWithZone:(NSZone *)zone {