20 lines
397 B
Objective-C
20 lines
397 B
Objective-C
//
|
|
// FESFilmEntryCell.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 06/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FESFilmEntryCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmTitle;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmYear;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmDirectors;
|
|
|
|
|
|
|
|
@end
|