Skip to content

Commit 41edce1

Browse files
committed
new
0 parents  commit 41edce1

File tree

7 files changed

+3494
-0
lines changed

7 files changed

+3494
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Mac OS X
2+
.DS_Store
3+
4+
# Xcode
5+
build/
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata
15+
*.xccheckout
16+
*.moved-aside
17+
DerivedData
18+
*.hmap
19+
*.ipa
20+
*.xcuserstate
21+
22+
# Carthage
23+
Carthage/Build

LICENSE.txt

Whitespace-only changes.

MaterialDesignSymbolObjC.podspec

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'MaterialDesignSymbolObjC'
3+
s.version = '1.0'
4+
s.license = 'Creative Commons Attribution 4.0 International (CC BY 4.0)'
5+
s.summary = 'Icon font library for ObjectiveC. Currently supports Google Material Design Icon'
6+
s.homepage = 'https://github.com/tichise/MaterialDesignSymbolObjC'
7+
s.social_media_url = 'http://twitter.com/tichise'
8+
s.author = "Takuya Ichise"
9+
s.source = { :git => 'https://github.com/tichise/MaterialDesignSymbolObjC.git', :tag => s.version }
10+
11+
s.ios.deployment_target = '8.0'
12+
13+
s.source_files = 'Sources/*.h'
14+
s.requires_arc = true
15+
s.resources = 'Resources/*.ttf'
16+
17+
end

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#### MaterialDesignSymbolObjC ![CocoaPods Version](https://img.shields.io/cocoapods/v/MaterialDesignSymbolObjC.svg?style=flat) ![Platform](https://img.shields.io/cocoapods/p/MaterialDesignSymbol.svg?style=flat) ![License](https://img.shields.io/cocoapods/l/MaterialDesignSymbolObjC.svg?style=flat)
2+
==============
3+
4+
<img src="https://s3.amazonaws.com/cocoacontrols_production/uploads/control_image/image/6377/_____.png" width="160px">
5+
6+
Icon font library for Objective C. Currently supports GoogleMaterialDesignIcons
7+
8+
Googleのマテリアルデザインアイコンをシンボルフォントで呼び出せるObjectiveCライブラリです。
9+
10+
#### Licence
11+
font used in this project
12+
13+
Author of the font used in this project: Google
14+
Link: https://github.com/google/material-design-icons
15+
16+
Creative Commons Attribution 4.0 International (CC BY 4.0)
17+
18+
19+
#### Examples
20+
21+
##### Image
22+
23+
```html
24+
```
25+
26+
##### Text
27+
28+
```html
29+
```
30+
31+
#### Installation (CocoaPods)
32+
`pod MaterialDesignSymbolObjC`

Resources/material-design-icons.ttf

218 KB
Binary file not shown.

0 commit comments

Comments
 (0)