Skip to content

Commit

Permalink
[Cocoapods] Change import syntax of Pod classes
Browse files Browse the repository at this point in the history
Change the syntax of the imports of the Pod we use in the sample app.
  • Loading branch information
Eric Vargas committed Jan 15, 2020
1 parent 00b3f3c commit a5b6660
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#import "YTPlayerView.h"
#import <youtube_ios_player_helper/YTPlayerView.h>

@interface PlaylistViewController : UIViewController<YTPlayerViewDelegate>

Expand All @@ -26,4 +26,4 @@

- (IBAction)buttonPressed:(id)sender;

@end
@end
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#import <UIKit/UIKit.h>

#import "YTPlayerView.h"
#import <youtube_ios_player_helper/YTPlayerView.h>

@interface SingleVideoViewController : UIViewController<YTPlayerViewDelegate>

Expand All @@ -33,4 +33,4 @@

- (IBAction)buttonPressed:(id)sender;

@end
@end

0 comments on commit a5b6660

Please sign in to comment.