Skip to content

Commit

Permalink
Import Apple frameworks as modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Diogo Autilio committed Jan 27, 2015
1 parent 1bc2397 commit 27e6dbf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion SCLAlertView/SCLAlertView.h
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 AnyKey Entertainment. All rights reserved.
//

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

typedef NSAttributedString* (^SCLAttributedFormatBlock)(NSString *value);
Expand Down
2 changes: 1 addition & 1 deletion SCLAlertView/SCLAlertView.m
Expand Up @@ -10,7 +10,7 @@
#import "SCLAlertViewResponder.h"
#import "SCLAlertViewStyleKit.h"
#import "UIImage+ImageEffects.h"
#import <AVFoundation/AVFoundation.h>
@import AVFoundation;

#define UIColorFromRGB(rgbValue) [UIColor \
colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
Expand Down
2 changes: 1 addition & 1 deletion SCLAlertView/SCLAlertViewResponder.h
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 AnyKey Entertainment. All rights reserved.
//

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

@interface SCLAlertViewResponder : NSObject
Expand Down
4 changes: 2 additions & 2 deletions SCLAlertView/SCLAlertViewStyleKit.h
Expand Up @@ -6,8 +6,8 @@
// Copyright (c) 2014 AnyKey Entertainment. All rights reserved.
//

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

@interface SCLAlertViewStyleKit : NSObject

Expand Down
2 changes: 1 addition & 1 deletion SCLAlertView/SCLButton.h
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 AnyKey Entertainment. All rights reserved.
//

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

@interface SCLButton : UIButton

Expand Down

0 comments on commit 27e6dbf

Please sign in to comment.