Skip to content

Commit

Permalink
update to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonXi committed Dec 29, 2017
1 parent b4e7344 commit 25d7a79
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ A solution to create & release UI component dynamically.

It a part of our [Tangram](https://github.com/alibaba/Tangram-iOS) solution. And it can be used as a standalone library.

这是一个动态化创建和发布 UI 组件的方案。

它是我们 [Tangram](https://github.com/alibaba/Tangram-iOS) 方案的一部分。当然它也可以独立使用。

中文站点:[VirtualView](http://tangram.pingguohe.net/docs/virtualview/about-virtualview)

## Features
Expand All @@ -18,6 +22,8 @@ It a part of our [Tangram](https://github.com/alibaba/Tangram-iOS) solution. And
4. Create component from loaded template and bind data to it.
5. Show the component.

简单总结起来就是用 XML 描述一个组件,用我们提供的工具编译成 out 二进制文件,在集成了 VirtualView 的 App 里直接加载 out 文件就可以得到一个组件,像使用普通 UIView 一样显示它就好了。

## Install

### CocoaPods
Expand All @@ -31,6 +37,7 @@ Use VirtualView with [Tangram](https://github.com/alibaba/Tangram-iOS):
pod 'Tangram', '~> 2.0'

CocoaPods will install VirtualView as a part of Tangram 2.0.

### Source codes

Or you can download source codes from [release page](https://github.com/alibaba/VirtualView-iOS/releases) and put them into your project.
Expand Down
4 changes: 2 additions & 2 deletions VirtualView.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |s|

s.name = "VirtualView"
s.version = "1.0.0"
s.version = "1.0.1"
s.summary = "A solution to create & release UI component dynamically."
s.homepage = "https://github.com/alibaba/VirtualView-iOS"
s.license = { :type => 'MIT' }
s.author = { "HarrisonXi" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source = { :git => "https://github.com/alibaba/VirtualView-iOS.git", :tag => '1.0.0' }
s.source = { :git => "https://github.com/alibaba/VirtualView-iOS.git", :tag => '1.0.1' }
s.source_files = 'VirtualView/**/*.{h,m}'
s.requires_arc = true
s.resources = 'VirtualView/Resources/*.*'
Expand Down

0 comments on commit 25d7a79

Please sign in to comment.