Home

Awesome

CMEnvironment

This project brings the idea of Environment variables to your iOS project in a nicely way.

##Contact:

Developed by Lucas Medeiros and Alisson Sales at Codeminer42 in Fortaleza

Follow us on twitter: @Codeminer42

Development requirements

Install cocoapods

To install cocoapods you will need ruby.

gem install cocoapods

More information about cocoapods:

CocoaPods

Add the dependency to your Podfile:

platform :ios
pod 'CMEnvironment'
...

Run pod install to install the dependencies.

Setup

Usage

Inherit from CMEnvironment class and create properties with the same name of the key attribute of your plist. For example:


#import "CMEnvironment.h"

@interface CMAppEnvironment : CMEnvironment

@property (nonatomic, copy) NSString *baseURL;

@end


@interface CMEnvironment : NSObject

@property (nonatomic, copy) NSString *name;

+ (id) sharedInstance; //returns a singleton instance using the application main bundle
- (id)initWithBundle:(NSBundle *)bundle;
- (BOOL)isDebug;
- (BOOL)isRelease;
- (void)changeToEnvironmenNamed:(NSString *)environment;

@end

Requirements

CMEnvironment requires iOS 5.x or greater.

The idea

The idea came from this post by Rob Pak.

License

Usage is provided under the MIT License. See LICENSE for the full details.