22 lines
374 B
Objective-C
22 lines
374 B
Objective-C
//
|
|
// FESAboutViewController.h
|
|
// FestivalHelper
|
|
//
|
|
// Created by Hamo Hapic on 07/09/14.
|
|
// Copyright (c) 2014 Senad Uka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class FESAboutEntry;
|
|
|
|
@interface FESAboutViewController : UIViewController
|
|
|
|
|
|
@property (strong)FESAboutEntry *aboutEntry;
|
|
@property (weak, nonatomic)IBOutlet UITextView *aboutDescription;
|
|
|
|
|
|
|
|
@end
|