Sha256: 0a85d03f20164ffde1d342d050afea065987ccdaed62820f28761a3c082b9e35
Contents?: true
Size: 330 Bytes
Versions: 18
Compression:
Stored size: 330 Bytes
Contents
#import "INavbar.h" #import "NavbarFactoryBase.h" static NavbarFactoryBase* ourNavbarFactory = nil; @implementation NavbarFactorySingleton +(id<INavbarFactory>) getNavbarFactoryInstance { if (ourNavbarFactory == nil) { ourNavbarFactory = [[NavbarFactoryBase alloc] init]; } return ourNavbarFactory; } @end
Version data entries
18 entries across 17 versions & 2 rubygems