Skip to content

Commit 3e908cc

Browse files
committed
First release
1 parent dccc051 commit 3e908cc

File tree

4 files changed

+1607
-12
lines changed

4 files changed

+1607
-12
lines changed

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# UIImageSymbols
22

3-
[![CI Status](https://img.shields.io/travis/Jianqiu Xiao/UIImageSymbols.svg?style=flat)](https://travis-ci.org/Jianqiu Xiao/UIImageSymbols)
3+
A SF Symbols static variables extension of UIImage.
4+
5+
[![CI Status](https://img.shields.io/travis/swordray/UIImageSymbols.svg?style=flat)](https://travis-ci.org/swordray/UIImageSymbols)
46
[![Version](https://img.shields.io/cocoapods/v/UIImageSymbols.svg?style=flat)](https://cocoapods.org/pods/UIImageSymbols)
57
[![License](https://img.shields.io/cocoapods/l/UIImageSymbols.svg?style=flat)](https://cocoapods.org/pods/UIImageSymbols)
68
[![Platform](https://img.shields.io/cocoapods/p/UIImageSymbols.svg?style=flat)](https://cocoapods.org/pods/UIImageSymbols)
79

8-
## Example
9-
10-
To run the example project, clone the repo, and run `pod install` from the Example directory first.
11-
1210
## Requirements
1311

1412
## Installation
@@ -20,6 +18,14 @@ it, simply add the following line to your Podfile:
2018
pod 'UIImageSymbols'
2119
```
2220

21+
## Usage
22+
23+
```swift
24+
let image: UIImage? = .cCircle // UIImage(systemName: "c.circle")
25+
let image: UIImage? = .eCircleFill // UIImage(systemName: "e.circle.fill")
26+
let image: UIImage? = ._11CircleFill // UIImage(systemName: "11.circle.fill")
27+
```
28+
2329
## Author
2430

2531
Jianqiu Xiao, [email protected]

UIImageSymbols.podspec

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,24 @@
99
Pod::Spec.new do |s|
1010
s.name = 'UIImageSymbols'
1111
s.version = '0.1.0'
12-
s.summary = 'A short description of UIImageSymbols.'
12+
s.summary = 'A SF Symbols static variables extension of UIImage.'
1313

1414
# This description is used to generate tags and improve search results.
1515
# * Think: What does it do? Why did you write it? What is the focus?
1616
# * Try to keep it short, snappy and to the point.
1717
# * Write the description between the DESC delimiters below.
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

20-
s.description = <<-DESC
21-
TODO: Add long description of the pod here.
22-
DESC
20+
s.description = s.summary * 2
2321

24-
s.homepage = 'https://github.com/Jianqiu Xiao/UIImageSymbols'
22+
s.homepage = 'https://github.com/swordray/UIImageSymbols'
2523
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
2624
s.license = { :type => 'MIT', :file => 'LICENSE' }
2725
s.author = { 'Jianqiu Xiao' => '[email protected]' }
28-
s.source = { :git => 'https://github.com/Jianqiu Xiao/UIImageSymbols.git', :tag => s.version.to_s }
26+
s.source = { :git => 'https://github.com/swordray/UIImageSymbols.git', :tag => s.version.to_s }
2927
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
3028

31-
s.ios.deployment_target = '8.0'
29+
s.ios.deployment_target = '13.0'
3230

3331
s.source_files = 'UIImageSymbols/Classes/**/*'
3432

@@ -39,4 +37,6 @@ TODO: Add long description of the pod here.
3937
# s.public_header_files = 'Pod/Classes/**/*.h'
4038
# s.frameworks = 'UIKit', 'MapKit'
4139
# s.dependency 'AFNetworking', '~> 2.3'
40+
41+
s.swift_versions = '5.1'
4242
end

UIImageSymbols/Classes/ReplaceMe.swift

Whitespace-only changes.

0 commit comments

Comments
 (0)