first screen (schedule) now has the right information

This commit is contained in:
Senad Uka
2014-09-02 20:00:02 +02:00
parent e176c70f18
commit 61cfcc173c
10 changed files with 422 additions and 11 deletions

View File

@@ -0,0 +1,34 @@
//
// FESScheduleEntryCell.m
// FestivalHelper
//
// Created by Hamo Hapic on 02/09/14.
// Copyright (c) 2014 Senad Uka. All rights reserved.
//
#import "FESScheduleEntryCell.h"
@implementation FESScheduleEntryCell
- (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