This repository has been archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update library to 2.8.0. Update http: header; update card.io.
- Loading branch information
Dave Goldman
committed
Dec 2, 2014
1 parent
06e06c0
commit e662fbb
Showing
25 changed files
with
222 additions
and
85 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
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
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
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,18 @@ | ||
// | ||
// CardIODetectionMode.h | ||
// Version 4.0.0 | ||
// | ||
// See the file "LICENSE.md" for the full license governing this code. | ||
// | ||
// | ||
|
||
#ifndef icc_CardIODetectionMode_h | ||
#define icc_CardIODetectionMode_h | ||
|
||
typedef NS_ENUM(NSInteger, CardIODetectionMode) { | ||
CardIODetectionModeCardImageAndNumber = 0, | ||
CardIODetectionModeCardImageOnly, | ||
CardIODetectionModeAutomatic | ||
}; | ||
|
||
#endif |
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
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
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,37 @@ | ||
// | ||
// CardIOUtilities.h | ||
// Version 4.0.0 | ||
// | ||
// See the file "LICENSE.md" for the full license governing this code. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
|
||
@interface CardIOUtilities : NSObject | ||
|
||
/// Please send the output of this method with any technical support requests. | ||
/// @return Human-readable version of this library. | ||
+ (NSString *)libraryVersion; | ||
|
||
/// Determine whether this device supports camera-based card scanning, considering | ||
/// factors such as hardware support and OS version. | ||
/// | ||
/// card.io automatically provides manual entry of cards as a fallback, | ||
/// so it is not typically necessary for your app to check this. | ||
/// | ||
/// @return YES iff the user's device supports camera-based card scanning. | ||
+ (BOOL)canReadCardWithCamera; | ||
|
||
/// The preload method prepares card.io to launch faster. Calling preload is optional but suggested. | ||
/// On an iPhone 5S, for example, preloading makes card.io launch ~400ms faster. | ||
/// The best time to call preload is when displaying a view from which card.io might be launched; | ||
/// e.g., inside your view controller's viewWillAppear: method. | ||
/// preload works in the background; the call to preload returns immediately. | ||
+ (void)preload; | ||
|
||
/// Returns a doubly Gaussian-blurred screenshot, intended for screenshots when backgrounding. | ||
/// @return Blurred screenshot. | ||
+ (UIImageView *)blurredScreenImageView; | ||
|
||
@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
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
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
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
Oops, something went wrong.