8 Commits
Author SHA1 Message Date
Anton c9add648cf Podspec fix 2020-04-08 23:51:12 +03:00
MadLord e9e3d12bff Update README.md 2020-04-03 07:47:23 +03:00
MadLord 181473aff5 Update README.md 2020-04-03 07:41:59 +03:00
MadLord 8a78a64be7 Update README.md 2020-04-03 07:41:31 +03:00
MadLord a01f3af30e Update README.md 2020-04-03 07:39:48 +03:00
MadLord 02c45967c0 Update README.md 2020-04-03 07:35:26 +03:00
Anton c748e09303 Podspec 2020-04-03 07:16:16 +03:00
Anton 31885c284e Screenshots fix 2020-04-03 07:12:58 +03:00
5 changed files with 27 additions and 8 deletions
-1
View File
@@ -6,6 +6,5 @@ target 'TagsList_Example' do
target 'TagsList_Tests' do
inherit! :search_paths
end
end
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
+2 -3
View File
@@ -3,7 +3,7 @@
[![CI Status](https://img.shields.io/travis/Anton/TagsList.svg?style=flat)](https://travis-ci.org/Anton/TagsList)
[![Version](https://img.shields.io/cocoapods/v/TagsList.svg?style=flat)](https://cocoapods.org/pods/TagsList)
[![License](https://img.shields.io/cocoapods/l/TagsList.svg?style=flat)](https://cocoapods.org/pods/TagsList)
[![Platform](https://img.shields.io/cocoapods/p/TagsList.svg?style=flat)](https://cocoapods.org/pods/TagsList)
[![Swift 5.0](https://img.shields.io/badge/Swift-5.0-green.svg?style=flat)](https://developer.apple.com/swift/)
<p align="center">
@@ -24,8 +24,7 @@ Example project includes 3 parts:
| **Content orientation** | **Items deleting** | **Customisation features** |
|:-------:|:-------:|:-------:|
|<img src="DemoGif/TagList 1.gif" width="300">|<img src="DemoGif/TagList 2.gif" width="300">| <img src="DemoGif/TagList 3.gif" width="300">|
|<img src="https://github.com/inomobile/tag-list/blob/master/DemoGif/TagList%201.gif?raw=true" width="300">|<img src="https://github.com/inomobile/tag-list/blob/master/DemoGif/TagList%202.gif?raw=true" width="300">| <img src="https://github.com/inomobile/tag-list/blob/master/DemoGif/TagList%203.gif?raw=true" width="300">|
## Requirements
- iOS 11.0+
+10 -4
View File
@@ -22,13 +22,19 @@ Pod::Spec.new do |s|
DESC
s.homepage = 'https://github.com/inomobile/tag-list'
s.screenshots = 'https://github.com/inomobile/tag-list/blob/master/Screenshots/CustomTags.png', 'https://github.com/inomobile/tag-list/blob/master/Screenshots/RegularTagsWithButton.png', 'https://github.com/inomobile/tag-list/blob/master/Screenshots/RegularTags.png'
s.screenshots = 'https://github.com/inomobile/tag-list/blob/master/Screenshots/CustomTags.png?raw=true', 'https://github.com/inomobile/tag-list/blob/master/Screenshots/RegularTagsWithButton.png?raw=true', 'https://github.com/inomobile/tag-list/blob/master/Screenshots/RegularTags.png?raw=true'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Anton Tekutov' => 'a.tekutov@inostudio.com' }
s.source = { :git => 'https://github.com/Anton/TagsList.git', :tag => s.version.to_s }
s.author = { 'Inostudio mobile team (Anton Tekutov)' => 'a.tekutov@inostudio.com' }
s.source = { :git => 'https://github.com/inomobile/tag-list.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.source_files = 'Source/**/*.swift'
s.source_files = 'Source/**/*'
s.swift_version = '5.0'
s.platforms = {
"ios": "11.0"
}
s.frameworks = 'UIKit'
end