-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from thiagoperes/master
fix(delegate): Fixed a bug in which optional methods in delegate not implemented caused a crash This commit fixes a crash that occurred when the hud image delegate method was not implemented by the delegate. This commit also adds a podspec file and the related tag.
- Loading branch information
Showing
2 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "BCScanner" | ||
s.version = "0.0.1" | ||
s.summary = "A barcode and qr code scanner that wraps the iOS7 scanning capabilities in a UIViewController" | ||
s.homepage = "https://github.com/michaelochs/BCScanner" | ||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = 'Michael Ochs' | ||
s.platform = :ios, '7.0' | ||
s.source = { :git => "https://github.com/michaelochs/BCScanner.git", :commit => "ae445da822b3058fe57f8c262ef8596326f31929" } | ||
s.source_files = 'BCScanner', 'BCScanner/**/*.{h,m}' | ||
s.framework = 'AVFoundation' | ||
s.requires_arc = true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters