Add 32-bit device support.
Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/cfe067a2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/cfe067a2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/cfe067a2 Branch: refs/heads/0.16-dev Commit: cfe067a279049dac9c28db617b0d6686ebbdae5c Parents: 75101d5 Author: DavidYang <yang...@ymatou.com> Authored: Thu Aug 10 19:21:13 2017 +0800 Committer: DavidYang <yang...@ymatou.com> Committed: Thu Aug 10 19:21:13 2017 +0800 ---------------------------------------------------------------------- ios/sdk/WeexSDK/Sources/Component/WXListComponent.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/cfe067a2/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m ---------------------------------------------------------------------- diff --git a/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m b/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m index f995c3e..e0d1d72 100644 --- a/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m +++ b/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m @@ -379,7 +379,7 @@ [self.weexInstance.componentManager _addUITask:^{ if (isDeleteSection) { - WXLogDebug(@"delete section:%ld", headerIndex); + WXLogDebug(@"delete section:%zd", headerIndex); [_completedSections removeObjectAtIndex:headerIndex]; } @@ -388,7 +388,7 @@ } if (completedReloadSection) { - WXLogDebug(@"Reload section:%ld", reloadIndex); + WXLogDebug(@"Reload section:%zd", reloadIndex); _completedSections[reloadIndex] = completedReloadSection; }