-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
591 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#import <UIKit/UIKit.h> | ||
@import UIKit; | ||
|
||
@interface AppDelegate : UIResponder<UIApplicationDelegate> | ||
|
||
@property(strong, nonatomic) UIWindow *window; | ||
@property(nonatomic, strong) UIWindow *window; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
Objective-C/AdvancedExample/AdvancedExample/MainViewController.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
@import AVFoundation; | ||
@import UIKit; | ||
|
||
@interface Video : NSObject | ||
|
||
// The title of the video | ||
@property(nonatomic, strong) NSString *title; | ||
/// The title of the video. | ||
@property(nonatomic, copy) NSString *title; | ||
|
||
// The thumbnail for the video list. | ||
/// The thumbnail for the video list. | ||
@property(nonatomic, strong) UIImage *thumbnail; | ||
|
||
// The URL for the video media file | ||
@property(nonatomic, strong) NSString *video; | ||
/// The URL for the video media file. | ||
@property(nonatomic, copy) NSString *video; | ||
|
||
// The URL for the VAST response | ||
@property(nonatomic, strong) NSString *tag; | ||
/// The URL for the VAST response. | ||
@property(nonatomic, copy) NSString *tag; | ||
|
||
// Returns an initialized video. | ||
/// Returns an initialized video. | ||
- (instancetype)initWithTitle:(NSString *)title | ||
thumbnail:(UIImage *)thumbnail | ||
video:(NSString *)video | ||
tag:(NSString *)tag; | ||
|
||
@end | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
Objective-C/AdvancedExample/AdvancedExample/VideoTableViewCell.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
Objective-C/AdvancedExample/AdvancedExample/VideoViewController.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.