[Add] MentaIFLYAdapter 6.00.23
[CocoaPods.git] / Specs / 8 / b / 3 / NSLayoutConstraint-SSLayout / 1.2 / NSLayoutConstraint-SSLayout.podspec.json
blob86fe40d5b55ff1679f1fa5219daa8fd615131440
2   "name": "NSLayoutConstraint-SSLayout",
3   "version": "1.2",
4   "summary": "easy-to-use NSLayoutConstraint",
5   "description": "# NSLayoutConstraint-SSLayout\nsimple and easy-to-use, 2files only, 17kB size.  \nsimilar usage as NSLayoutAnchor, but support iOS-8 and \"swiftable\".  \n1.7 times faster than Masonry, nearly as fast as the system method.  \ntrack all constraints and easy to activate/deactivate any one of them.\n## Example\n### Setup constraints\n```\n[self.redView activateConstraints:^{\n        self.redView.height_attr.constant = 100;\n        self.redView.width_attr = self.blueView.width_attr;\n        self.redView.top_attr = self.blueView.top_attr;\n        self.redView.leading_attr = self.blueView.trailing_attr;\n    }];\n```\n### Alter value of a constraint\n```\nself.blueView.width_attr.constant = 100;\n```\n### Obtain a constraint\n```\nNSLayoutConstraint *cons = [self.titleLabel constraintAccordingToAttribute:self.titleLabel.bottom_attr andAttribute:self.subtitleLabel.top_attr];\n```\n## Adding to your project\n### Using CocoaPods\nAdd pod 'SSBannerViewController' to your Podfile.\n\n### Including Source Directly Into Your Project\nAdd the files under \"Source\" folder to your project.\n\n# Licence\nThis project uses MIT License.",
6   "homepage": "https://github.com/suruihai/NSLayoutConstraint-SSLayout",
7   "license": "MIT",
8   "authors": {
9     "stevenSu": "191676345@qq.com"
10   },
11   "platforms": {
12     "ios": "8.0"
13   },
14   "source": {
15     "git": "https://github.com/suruihai/NSLayoutConstraint-SSLayout.git",
16     "tag": "1.2"
17   },
18   "source_files": "Source/*.{h,m}",
19   "frameworks": "UIKit",
20   "requires_arc": true