Sha256: 514333b713a6fb3ba694588b9dbbfbf57c0b8a470de8c4e683843e85b0d92a23

Contents?: true

Size: 495 Bytes

Versions: 9

Compression:

Stored size: 495 Bytes

Contents

#import "GHTableCell.h"

#import "GHLocation.h"

@interface GHTableCell ()

@property (nonatomic, strong) GHLocation  * location;
@property (nonatomic, strong) NSString    * value;

@end

@implementation GHTableCell

@synthesize location;
@synthesize value;

- (id)initWithLocation:(GHLocation *)theLocation value:(NSString *)theValue
{
    if (self = [super init])
    {
        location = theLocation;
        value = theValue;
    }
    
    return self;
}

@end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
xcfit-2.0.6 XCFit/Classes/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.9.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.8.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.7.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.6.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.5.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.4.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.3.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m
xcfit-0.2.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHTableCell.m