Files
old-festivalhelper/FestivalHelper/venues/FESVenueEntryCell.m
2014-09-05 07:27:19 +02:00

39 lines
753 B
Objective-C

//
// FESVenueEntryCell.m
// FestivalHelper
//
// Created by Hamo Hapic on 04/09/14.
// Copyright (c) 2014 Senad Uka. All rights reserved.
//
#import "FESVenueEntryCell.h"
@implementation FESVenueEntryCell
@synthesize venueCapacity;
@synthesize venueAddress;
@synthesize venueName;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
- (void)awakeFromNib
{
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end