19 lines
488 B
Objective-C
19 lines
488 B
Objective-C
//
|
|
// FESScheduleFilmCell.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 03/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FESScheduleFilmCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic)IBOutlet UILabel *scheduleFilmTime;
|
|
@property (weak, nonatomic)IBOutlet UILabel *scheduleFilmTitle;
|
|
@property (weak, nonatomic)IBOutlet UILabel *scheduleFilmVenue;
|
|
@property (weak, nonatomic)IBOutlet UILabel *scheduleFilmDuration;
|
|
|
|
@end
|