40 lines
809 B
Objective-C
40 lines
809 B
Objective-C
//
|
|
// FESScheduleFilmCell.m
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 03/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import "FESScheduleFilmCell.h"
|
|
|
|
@implementation FESScheduleFilmCell
|
|
|
|
@synthesize scheduleFilmTitle;
|
|
@synthesize scheduleFilmDuration;
|
|
@synthesize scheduleFilmTime;
|
|
@synthesize scheduleFilmVenue;
|
|
|
|
- (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
|