Skip to content

Commit

Permalink
fix the header import error for v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xhzengAIB committed May 4, 2014
1 parent 5101acb commit ea337f4
Show file tree
Hide file tree
Showing 15 changed files with 46 additions and 47 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@
74180D7D1910864400A35C82 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 74180D7C1910864400A35C82 /* [email protected] */; };
744FBDC81915EE7400FB4A65 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 744FBDC61915EE7400FB4A65 /* [email protected] */; };
744FBDC91915EE7400FB4A65 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 744FBDC71915EE7400FB4A65 /* [email protected] */; };
744FBDCD1915FF3A00FB4A65 /* MessageDisplayKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 744FBDCC1915FF3A00FB4A65 /* MessageDisplayKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
7475BA33190D4B7B001DD9B1 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 7475BA32190D4B7B001DD9B1 /* [email protected] */; };
748245051908C730008EC388 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 748245041908C730008EC388 /* Foundation.framework */; };
748245071908C730008EC388 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 748245061908C730008EC388 /* CoreGraphics.framework */; };
Expand Down Expand Up @@ -250,7 +249,6 @@
74180D7C1910864400A35C82 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
744FBDC61915EE7400FB4A65 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
744FBDC71915EE7400FB4A65 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
744FBDCC1915FF3A00FB4A65 /* MessageDisplayKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDisplayKit.h; sourceTree = "<group>"; };
7475BA32190D4B7B001DD9B1 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
748245011908C730008EC388 /* MessageDisplayExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MessageDisplayExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
748245041908C730008EC388 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
Expand Down Expand Up @@ -569,7 +567,6 @@
7482454D190902DA008EC388 /* Classes */ = {
isa = PBXGroup;
children = (
744FBDCC1915FF3A00FB4A65 /* MessageDisplayKit.h */,
7482457819091BA2008EC388 /* Macro */,
748245941909F1F0008EC388 /* Common */,
7482454E190902DA008EC388 /* Categorys */,
Expand Down Expand Up @@ -794,7 +791,6 @@
740660C31914DC2300E1CE95 /* XHEmotionCollectionViewCell.h in Headers */,
740660C81914DC4700E1CE95 /* XHEmotionCollectionViewFlowLayout.h in Headers */,
740660B91914D22A00E1CE95 /* XHEmotionManagerView.h in Headers */,
744FBDCD1915FF3A00FB4A65 /* MessageDisplayKit.h in Headers */,
740660D2191507F800E1CE95 /* XHEmotionSectionBar.h in Headers */,
740660BE1914D65600E1CE95 /* XHEmotion.h in Headers */,
74065FB419123DDB00E1CE95 /* XHShareMenuView.h in Headers */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>

#import "MessageDisplayKit.h"
#import "XHMessageTableViewController.h"
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import "MessageDisplayKit.h"
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <MessageDisplayFramework/MessageDisplayKit.h>
#import <MessageDisplayFramework/XHMessageTableViewController.h>
#endif
1 change: 1 addition & 0 deletions MessageDisplayKit/Classes/Common/XHMessageAvatorFactory.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import "XHMessageAvatorFactory.h"
#import "UIImage+XHRounded.h"

@implementation XHMessageAvatorFactory

Expand Down
1 change: 1 addition & 0 deletions MessageDisplayKit/Classes/Common/XHMessageBubbleFactory.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import "XHMessageBubbleFactory.h"
#import "XHMacro.h"

@implementation XHMessageBubbleFactory

Expand Down
1 change: 1 addition & 0 deletions MessageDisplayKit/Classes/Common/XHMessageVoiceFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import <Foundation/Foundation.h>
#import "XHMessageBubbleFactory.h"

@interface XHMessageVoiceFactory : NSObject

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@

#import <UIKit/UIKit.h>

// Model
#import "XHMessage.h"

// Views
#import "XHMessageTableView.h"
#import "XHMessageTableViewCell.h"
#import "XHMessageInputView.h"
#import "XHShareMenuView.h"
#import "XHEmotionManagerView.h"

// Factory
#import "XHMessageBubbleFactory.h"

// Helper
#import "XHPhotographyHelper.h"

// Categorys
#import "UIScrollView+XHkeyboardControl.h"

@protocol XHMessageTableViewControllerDelegate <NSObject>

@optional
Expand Down
40 changes: 0 additions & 40 deletions MessageDisplayKit/Classes/MessageDisplayKit.h

This file was deleted.

1 change: 1 addition & 0 deletions MessageDisplayKit/Classes/Models/XHMessageModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import <Foundation/Foundation.h>
#import "XHMessageBubbleFactory.h"

@class XHMessage;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import <UIKit/UIKit.h>
#import "XHEmotionManager.h"

@interface XHEmotionCollectionViewFlowLayout : UICollectionViewFlowLayout

Expand Down
1 change: 1 addition & 0 deletions MessageDisplayKit/Classes/Views/XHEmotionSectionBar.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import <UIKit/UIKit.h>
#import "XHEmotionManager.h"

@protocol XHEmotionSectionBarDelegate <NSObject>

Expand Down
16 changes: 16 additions & 0 deletions MessageDisplayKit/Classes/Views/XHMessageBubbleView.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,25 @@

#import <UIKit/UIKit.h>

// Views
#import "XHMessageTextView.h"
#import "XHMessageInputView.h"
#import "XHMessageDisplayTextView.h"
#import "XHBubblePhotoImageView.h"

// Macro
#import "XHMacro.h"

// Model
#import "XHMessage.h"

// Factorys
#import "XHMessageAvatorFactory.h"
#import "XHMessageVoiceFactory.h"

// Categorys
#import "UIImage+XHAnimatedFaceGif.h"

#define kXHMessageBubbleDisplayMaxLine 200

@interface XHMessageBubbleView : UIView
Expand Down
2 changes: 2 additions & 0 deletions MessageDisplayKit/Classes/Views/XHMessageInputView.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#import "XHMessageInputView.h"

#import "NSString+MessageInputView.h"

@interface XHMessageInputView () <UITextViewDelegate>

@property (nonatomic, weak, readwrite) XHMessageTextView *inputTextView;
Expand Down
1 change: 1 addition & 0 deletions MessageDisplayKit/Classes/Views/XHShareMenuView.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import <UIKit/UIKit.h>
#import "XHShareMenuItem.h"

#define kXHShareMenuPageControlHeight 30

Expand Down

0 comments on commit ea337f4

Please sign in to comment.