18 Star 46 Fork 11

我是谁1243 / QRCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

SwiftQRCode

Simple QRCode detector and generator in Swift

Features

  • QRCode detector
  • QRCode generate

Requirements

  • iOS 8.0+
  • Xcode 6.3

Installation

CocoaPods

CocoaPods 0.36 adds supports for Swift and embedded frameworks. You can install it with the following command:

$ gem install cocoapods

To integrate SwiftQRCode into your Xcode project using CocoaPods, specify it in your Podfile:

platform :ios, '8.0'
use_frameworks!

pod 'SwiftQRCode'

Then, run the following command:

$ pod install

You should open the {Project}.xcworkspace instead of the {Project}.xcodeproj after you installed anything from CocoaPods.

For more information about how to use CocoaPods, I suggest this tutorial.

Usage

Swift

  • import framework
import SwiftQRCode
  • scan qrcode
let scanner = QRCode()

override func viewDidLoad() {
    super.viewDidLoad()

    scanner.prepareScan(view) { (stringValue) -> () in
        println(stringValue)
    }
    scanner.scanFrame = view.bounds
}

override func viewDidAppear(animated: Bool) {
    super.viewDidAppear(animated)

    // start scan
    scanner.startScan()
}
  • generate qrcode image
// generate qrcode
iconView.image = QRCode.generateImage("Hello SwiftQRCode", avatarImage: UIImage(named: "avatar"), avatarScale: 0.3)

Objective-C

  • import "ProjectName-Swift.h"

头文件格式是 "项目名称-Swift.h"

#import "QRCodeDemoObjc-Swift.h"
  • scan qrcode
@property (nonatomic, strong) QRCode *scanner;

- (void)viewDidLoad {
    [super viewDidLoad];

    // alloc and prepare for scan
    self.scanner = [[QRCode alloc] init];
    [self.scanner prepareScan:self.view completion:^(NSString * __nonnull stringValue) {
        NSLog(@"%@", stringValue);
    }];
}

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];

    // start scan
    [self.scanner startScan];
}
  • generate qrcode image
// generate qrcode
[QRCode generateImage:@"Hello SwiftQRCode" avatarImage:[UIImage imageNamed:@"avatar.jpg"] avatarScale:0.25];
The MIT License (MIT) Copyright (c) 2015 Fan Liu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

用swift写的二维码框架 展开 收起
条形码/二维码
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
条形码/二维码
1
https://gitee.com/woshishui1243/QRCode.git
git@gitee.com:woshishui1243/QRCode.git
woshishui1243
QRCode
QRCode
master

搜索帮助