films tab has correct information on it

This commit is contained in:
Senad Uka
2014-09-06 13:42:39 +02:00
parent 7bea7f47fc
commit 90d0d8561b
12 changed files with 455 additions and 27 deletions

View File

@@ -0,0 +1,40 @@
//
// FESFilmEntryCell.m
// FestivalHelper
//
// Created by Hamo Hapic on 06/09/14.
// Copyright (c) 2014 Senad Uka. All rights reserved.
//
#import "FESFilmEntryCell.h"
@implementation FESFilmEntryCell
@synthesize filmDirectors;
@synthesize filmTitle;
@synthesize filmYear;
- (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