Skip to content

Commit

Permalink
Using @import module syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mdznr committed Aug 15, 2015
1 parent e256b25 commit f3c25d5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Classes/MTZWhatsNew.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#import <Foundation/Foundation.h>
@import Foundation;

#import "MTZWhatsNewViewController.h"

Expand Down
2 changes: 1 addition & 1 deletion Classes/MTZWhatsNewViewController/MTZCollectionView.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

/*
A @c UICollectionView subclass that automatically enables and disables scrolling depending on whether or not the content fits within the scrollview's frame.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

/// Describes the kind of layout of the cell.
typedef NS_ENUM(NSUInteger, MTZWhatsNewFeatureCollectionViewCellLayoutStyle){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

/// Describes the style of the view controller.
typedef NS_ENUM(NSUInteger, MTZWhatsNewViewControllerStyle) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

@interface NSLayoutConstraint (Common)

Expand Down
2 changes: 1 addition & 1 deletion Demo Apps/Podcasts/Podcasts/PDCAppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

@interface PDCAppDelegate : UIResponder <UIApplicationDelegate>

Expand Down
2 changes: 1 addition & 1 deletion Demo Apps/Podcasts/Podcasts/PDCViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

@interface PDCViewController : UIViewController

Expand Down
2 changes: 1 addition & 1 deletion Demo Apps/Podcasts/Podcasts/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Matt Zanchelli. All rights reserved.
//

#import <UIKit/UIKit.h>
@import UIKit;

#import "PDCAppDelegate.h"

Expand Down

0 comments on commit f3c25d5

Please sign in to comment.