Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astrokin/ean13barcodegenerator
Simple and performance solution to generate EAN13 barcode for iOS applications
https://github.com/astrokin/ean13barcodegenerator
barcode ean13 objective-c swift
Last synced: about 1 month ago
JSON representation
Simple and performance solution to generate EAN13 barcode for iOS applications
- Host: GitHub
- URL: https://github.com/astrokin/ean13barcodegenerator
- Owner: astrokin
- License: mit
- Created: 2013-08-28T08:01:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-11-17T23:53:01.000Z (about 6 years ago)
- Last Synced: 2024-12-01T15:43:17.563Z (about 1 month ago)
- Topics: barcode, ean13, objective-c, swift
- Language: Objective-C
- Homepage: http://iapps.by
- Size: 121 KB
- Stars: 82
- Watchers: 9
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EAN13BarcodeGenerator
[![CI Status](https://img.shields.io/travis/astrokin/EAN13BarcodeGenerator.svg?style=flat)](https://travis-ci.org/astrokin/EAN13BarcodeGenerator)
[![Version](https://img.shields.io/cocoapods/v/EAN13BarcodeGenerator.svg?style=flat)](https://cocoapods.org/pods/EAN13BarcodeGenerator)
[![License](https://img.shields.io/cocoapods/l/EAN13BarcodeGenerator.svg?style=flat)](https://cocoapods.org/pods/EAN13BarcodeGenerator)
[![Platform](https://img.shields.io/cocoapods/p/EAN13BarcodeGenerator.svg?style=flat)](https://cocoapods.org/pods/EAN13BarcodeGenerator)Simple and performance solution to generate EAN13 barcode for iOS applications
![alt tag](Screen.png)
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
```Objective-C
#import "BarCodeView.h"
#import "BarCodeEAN13.h"BarCodeView *barCodeView = [[BarCodeView alloc] initWithFrame:kBarCodeFrame];
[self.view addSubview:barCodeView];
[barCodeView setBarCode:GetNewRandomEAN13BarCode()];```
```Swift
import EAN13BarcodeGeneratorlet barCodeView = BarCodeView(frame: CGRect(x: 103.0, y: 155.0, width: 113.0, height: 100.0))
view.addSubview(barCodeView)
barCodeView.barCode = GetNewRandomEAN13BarCode()
```If you need any additional functionality please contact me.
If you have any questions don't hesitate to contact me.
Have a nice day! =)
## Requirements
iOS 8+
## Installation
EAN13BarcodeGenerator is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod 'EAN13BarcodeGenerator'
```## Author
Alexey Strokin, [email protected]
## License
EAN13BarcodeGenerator is available under the MIT license. See the LICENSE file for more info.