mirror of
https://github.com/samsonjs/5by5Browser.git
synced 2026-03-26 09:15:53 +00:00
26 lines
772 B
Objective-C
26 lines
772 B
Objective-C
//
|
|
// SSMasterViewController.h
|
|
// 5by5Browser
|
|
//
|
|
// Created by Sami Samhuri on 11-12-17.
|
|
// Copyright (c) 2011 Guru Logic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ShowViewController.h"
|
|
#import "FiveByFive.h"
|
|
#import "Show.h"
|
|
|
|
@interface SSMasterViewController : UITableViewController <ShowDelegate>
|
|
|
|
@property (nonatomic, retain) FiveByFive *fiveByFive;
|
|
@property (nonatomic, retain) ShowViewController *showViewController;
|
|
@property (nonatomic, retain) Show *currentShow;
|
|
@property (nonatomic, retain) NSString *currentEpisodeNumber;
|
|
@property (nonatomic, retain) NSString *currentEpisodeName;
|
|
@property (nonatomic, retain) NSTimer *checkNowPlayingTimer;
|
|
@property (nonatomic, retain) UITableViewCell *selectedCell;
|
|
|
|
- (void) checkNowPlaying;
|
|
|
|
@end
|