33 lines
796 B
Objective-C
33 lines
796 B
Objective-C
//
|
|
// FESFilmDetailsViewController.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 06/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class FESFilmEntry;
|
|
|
|
@interface FESFilmDetailsViewController : UIViewController
|
|
|
|
@property (strong)FESFilmEntry *filmEntry;
|
|
|
|
|
|
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmTitle;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmTitleTranslation;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmProgram;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmDate;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmTime;
|
|
@property (weak, nonatomic)IBOutlet UITextView *filmDescription;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmDirectors;
|
|
@property (weak, nonatomic)IBOutlet UILabel *filmTagLines;
|
|
|
|
|
|
|
|
|
|
|
|
@end
|