[Add] AlibabacloudMse20190531 6.13.0
[CocoaPods.git] / Specs / 7 / d / 5 / BRSignatureView / 0.1.2 / BRSignatureView.podspec.json
blob750874f89c3d25c63b15c9d9475a102f2f9edb56
2   "name": "BRSignatureView",
3   "version": "0.1.2",
4   "summary": "A lightweight, fast and customizable option for capturing signatures within your app.",
5   "description": "UI component for capturing signature.\n\nLicense\nSource code of this project is available under the standard MIT license. Please see the license file.\n\nUsage\nTo see a quick demo, simply type pod try SignatureView.\n\nInitialize SignatureView from nib or programmatically:\n\nCGRect frame = CGRectMake(0, 40, 320, 300);\nid view = [[SignatureView alloc] initWithFrame:frame];\n[self.view addSubview:view];\nself.signatureView = view;\nCustomization\nYou can customzie following attributes:\n\nLine Color\n\nself.signatureView.foregroundLineColor = [UIColor redColor];\nself.signatureView.backgroundLineColor = [UIColor blueColor];\nLine Width\n\nself.signatureView.foregroundLineWidth = 3.0;\nself.signatureView.backgroundLineWidth = 3.0;\nSignature\nA signature image can be retrieved by UIImage object:\n\nUIImage *signature = [self.signatureView signatureImage];\nor by PNG representation:\n\nNSData *signatureData = [self.signatureView signatureData];\nClearing\nSignatureView comes with a UILongPressGestureRecognizer which is responsible for clearning its view;",
6   "homepage": "https://gitlab.srswebsolutions.com/berlinrajs/BRSignatureView",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "berlinrajs": "berlinrajs@srswebsolutions.com"
13   },
14   "source": {
15     "git": "https://gitlab.srswebsolutions.com/berlinrajs/BRSignatureView.git",
16     "tag": "0.1.2"
17   },
18   "platforms": {
19     "ios": "8.0"
20   },
21   "source_files": "BRSignatureView/Classes/BRSignatureView.swift",
22   "resource_bundles": {
23     "BRSignatureView": [
24       "BRSignatureView/Assets/Clear.png"
25     ]
26   }