You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by cx...@apache.org on 2017/04/10 13:01:00 UTC

incubator-weex git commit: * [ios] fix compiler complain

Repository: incubator-weex
Updated Branches:
  refs/heads/dev 636a72581 -> 1e923a4d1


* [ios] fix compiler complain


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/1e923a4d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/1e923a4d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/1e923a4d

Branch: refs/heads/dev
Commit: 1e923a4d160d9d99a3f8ed0531c0aa7563c8292c
Parents: 636a725
Author: acton393 <zh...@gmail.com>
Authored: Mon Apr 10 20:52:57 2017 +0800
Committer: acton393 <zh...@gmail.com>
Committed: Mon Apr 10 20:52:57 2017 +0800

----------------------------------------------------------------------
 .../WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m  | 2 +-
 ios/sdk/WeexSDK/Sources/WeexSDK.h                                  | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/1e923a4d/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m
----------------------------------------------------------------------
diff --git a/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m b/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m
index 92875ce..ed02863 100644
--- a/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m
+++ b/ios/sdk/WeexSDK/Sources/Component/Recycler/WXRecyclerDataController.m
@@ -15,7 +15,7 @@
 
 @property (nonatomic, strong, readwrite) NSArray<WXSectionDataController *> *sections;
 @property (nonatomic, strong, readonly) NSMapTable<WXCellComponent *, NSIndexPath*> *cellToIndexPathTable;
-@property (nonatomic, strong, readonly) NSMapTable<WXCellComponent *, NSIndexPath*> *headerToIndexTable;
+@property (nonatomic, strong, readonly) NSMapTable<WXHeaderComponent *, NSNumber*> *headerToIndexTable;
 
 @end
 

http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/1e923a4d/ios/sdk/WeexSDK/Sources/WeexSDK.h
----------------------------------------------------------------------
diff --git a/ios/sdk/WeexSDK/Sources/WeexSDK.h b/ios/sdk/WeexSDK/Sources/WeexSDK.h
index 2f826b2..6b81f35 100644
--- a/ios/sdk/WeexSDK/Sources/WeexSDK.h
+++ b/ios/sdk/WeexSDK/Sources/WeexSDK.h
@@ -8,6 +8,7 @@
 
 #ifdef __OBJC__
 
+#import "WXValidateProtocol.h"
 #import "WXUtility.h"
 #import "WXURLRewriteProtocol.h"
 #import "WXType.h"