Inherits from NSObject
Declared in CYFixtureHelper.h
CYFixtureHelper.m

Class Methods

dictionaryFromFixtureByName:

Returns an NSDictionary of the contents in the fileName.json if the file is found in the [NSBundle mainBundle]

+ (NSDictionary *)dictionaryFromFixtureByName:(NSString *)fileName

Parameters

fileName

NSString The name of the .json file the read

Return Value

An NSDictionary of the contents in the fileName.json if the file is found in the [NSBundle mainBundle]

Declared In

CYFixtureHelper.h

dictionaryFromFixtureByName:inBundle:

Returns an NSDictionary of the contents in the fileName.json if the file is found in an NSBundle named bundleName

+ (NSDictionary *)dictionaryFromFixtureByName:(NSString *)fileName inBundle:(NSString *)bundleName

Parameters

fileName

NSString The name of the .json file the read

bundleName

NSString The name of the NSBundle to search for the fileName.json

Return Value

An NSDictionary of the contents in the fileName.json if the file is found in an NSBundle named bundleName

Declared In

CYFixtureHelper.h