Skip to content

Instantly share code, notes, and snippets.

@besi
besi / Environment.m
Created January 23, 2012 12:08 — forked from rpak/Environment.m
Sample code for a Singleton that provides configuration or environment data
#import "Environment.h"
@implementation Environment
static Environment *sharedInstance = nil;
@synthesize myApiURL;
- (id)init
{