Skip to content

Commit a65df58

Browse files
committed
Fix for ObjectiveC++
In ObjectiveC++ (.mm files) we can't use modules. http://stackoverflow.com/questions/32555710/xcode-modules-enabled-in- settings-but-still-cant-use-import
1 parent 18cf99a commit a65df58

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Classes/BEMAnimationManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright (c) 2015 Boris Emorine. All rights reserved.
77
//
88

9-
@import UIKit;
9+
#import <UIKit/UIKit.h>
1010

1111
/** Animation object used by BEMCheckBox to generate animations.
1212
*/

Classes/BEMCheckBox.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright (c) 2015 Boris Emorine. All rights reserved.
77
//
88

9-
@import UIKit;
9+
#import <UIKit/UIKit.h>
1010

1111
@protocol BEMCheckBoxDelegate;
1212

Classes/BEMPathManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright (c) 2015 Boris Emorine. All rights reserved.
77
//
88

9-
@import UIKit;
9+
#import <UIKit/UIKit.h>
1010
#import "BEMCheckBox.h"
1111

1212
/** Path object used by BEMCheckBox to generate paths.

0 commit comments

Comments
 (0)