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