Skip to content

Commit 27e6dbf

Browse files
author
Diogo Autilio
committed
Import Apple frameworks as modules
1 parent 1bc2397 commit 27e6dbf

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

SCLAlertView/SCLAlertView.h

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

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

1212
typedef NSAttributedString* (^SCLAttributedFormatBlock)(NSString *value);

SCLAlertView/SCLAlertView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#import "SCLAlertViewResponder.h"
1111
#import "SCLAlertViewStyleKit.h"
1212
#import "UIImage+ImageEffects.h"
13-
#import <AVFoundation/AVFoundation.h>
13+
@import AVFoundation;
1414

1515
#define UIColorFromRGB(rgbValue) [UIColor \
1616
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \

SCLAlertView/SCLAlertViewResponder.h

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

9-
#import <Foundation/Foundation.h>
9+
@import Foundation;
1010
#import "SCLAlertView.h"
1111

1212
@interface SCLAlertViewResponder : NSObject

SCLAlertView/SCLAlertViewStyleKit.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// Copyright (c) 2014 AnyKey Entertainment. All rights reserved.
77
//
88

9-
#import <Foundation/Foundation.h>
10-
#import <UIKit/UIKit.h>
9+
@import Foundation;
10+
@import UIKit;
1111

1212
@interface SCLAlertViewStyleKit : NSObject
1313

SCLAlertView/SCLButton.h

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

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

1111
@interface SCLButton : UIButton
1212

0 commit comments

Comments
 (0)