18 lines
356 B
Objective-C
18 lines
356 B
Objective-C
//
|
|
// FESScheduleEntryCell.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 02/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface FESScheduleEntryCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic)IBOutlet UILabel *scheduleDayOfWeek;
|
|
@property (weak, nonatomic)IBOutlet UILabel *scheduleDate;
|
|
|
|
|
|
@end
|