-
Notifications
You must be signed in to change notification settings - Fork 1
/
ELMovieDetailView.h
35 lines (30 loc) · 1.24 KB
/
ELMovieDetailView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// SKYMovieDetailView.h
// MovieMood
//
// Created by Eric Lee on 2/19/14.
// Copyright (c) 2014 Eric Lee Productions. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ELBorderButton.h"
@protocol MovieDetailButtonResponse
-(void)iTunesButtonPressedResponse:(id) sender;
-(void)favButtonPressedResponse:(id) sender;
-(void)doNotShowMeButtonPressed: (id) sender;
@end
@interface ELMovieDetailView : UIView
@property (weak, nonatomic) IBOutlet UILabel *movieTitle;
@property (weak, nonatomic) IBOutlet UIImageView *artworkImage;
@property (weak, nonatomic) IBOutlet UILabel *genreLabel;
@property (weak, nonatomic) IBOutlet UILabel *buyLabel;
@property (weak, nonatomic) IBOutlet UILabel *rentLabel;
@property (weak, nonatomic) IBOutlet ELBorderButton *iTunesButton;
@property (weak, nonatomic) IBOutlet ELBorderButton *favButton;
@property (nonatomic, retain) id buttonResponseDelegate;
@property (weak, nonatomic) IBOutlet UITextView *summaryBox;
@property (weak, nonatomic) IBOutlet UILabel *directorLabel;
@property (weak, nonatomic) IBOutlet UILabel *ratingLabel;
@property (weak, nonatomic) IBOutlet UILabel *releaseDateLabel;
@property (weak, nonatomic) IBOutlet UIButton *doNotShowMovieButton;
-(void)setSummaryText:(NSString *) text;
@end