Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hlongvu committed Jan 30, 2019
1 parent bae7ed8 commit 7f7287d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@
# * https://www.objc.io/issues/6-build-tools/travis-ci/
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
language: objective-c
os: osx
osx_image: xcode10.1
language: swift
branches:
only:
-master
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/SGView.xcworkspace -scheme SGView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/SGView.xcworkspace -scheme SGView-Example ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,20 @@
[![License](https://img.shields.io/cocoapods/l/SGView.svg?style=flat)](https://cocoapods.org/pods/SGView)
[![Platform](https://img.shields.io/cocoapods/p/SGView.svg?style=flat)](https://cocoapods.org/pods/SGView)

# Introduction


[![SGView](https://img.youtube.com/vi/1_MhlEsKHLc/0.jpg)](https://www.youtube.com/watch?v=1_MhlEsKHLc)


To build a long and complex ui screen is a tedious task. We often using UITableView to make this kind of screen. Inspired by Airbnb/Epoxy library, I recreate a small and lightweight similar library for iOS. This library handles all the complex and repeatible task when dealing with UITableView DataSource and Delegate, and showing a nicer and cleaner API.

For more details and how to work with this library, please check out my blog post: [https://blog.hlongvu.com](http://bit.ly/sgview)

## Example

To run the example project, clone the repo, and run `pod install` from the Example directory first.

## Requirements

## Installation

Expand Down

0 comments on commit 7f7287d

Please sign in to comment.