-
Notifications
You must be signed in to change notification settings - Fork 34
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 #36 from PDF417/feature/v5.1.0
Feature/v5.1.0
- Loading branch information
Showing
118 changed files
with
4,228 additions
and
600 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 @@ | ||
3.1 |
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,80 @@ | ||
// | ||
// App.h | ||
// iphone-photopay | ||
// | ||
// Created by Ja on 11/2/11. | ||
// Copyright (c) 2011 [email protected]. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "PPMicroBlinkDefines.h" | ||
|
||
#ifdef __OBJC__ | ||
#import <UIKit/UIKit.h> | ||
#endif | ||
|
||
#define PP_IS_IPAD (([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad)) | ||
|
||
/* | ||
* System Versioning Preprocessor Macros | ||
*/ | ||
|
||
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) | ||
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) | ||
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) \ | ||
([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) | ||
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) | ||
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) \ | ||
([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) | ||
|
||
#define PP_NOTIFY(notificationKey, valueKey) \ | ||
{ \ | ||
NSDictionary *dict = [NSDictionary dictionaryWithObject:@(YES) forKey:valueKey]; \ | ||
[[NSNotificationCenter defaultCenter] postNotificationName:notificationKey object:nil userInfo:dict]; \ | ||
} | ||
|
||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPApp : NSObject | ||
|
||
@property (nonatomic) NSString *language; | ||
|
||
/** Bundle with resources used in framework */ | ||
@property (nonatomic) NSBundle *resourcesBundle; | ||
|
||
/** Obtain the shared instance */ | ||
+ (instancetype)instance; | ||
|
||
/** Designated initializer */ | ||
- (id)init; | ||
|
||
/** Sets the language used in PhotoPaySDK */ | ||
- (void)setLanguage:(NSString *)language; | ||
|
||
/** Sets the language to default (i.e. language specified in the user's device settings */ | ||
- (void)setDefaultLanguage; | ||
|
||
/** Pushes the UIApplication status bar style to a internally handled stack */ | ||
- (void)pushStatusBarStyle:(UIStatusBarStyle)statusBarStyle; | ||
|
||
/** Returns the status bar style to the last saved value */ | ||
- (void)popStatusBarStyle; | ||
|
||
/** Push the status bar hidden value */ | ||
- (void)pushStatusBarHidden:(BOOL)hidden; | ||
|
||
/** pops the status bar hidden value */ | ||
- (void)popStatusBarHidden; | ||
|
||
/** Sets the key that the help was shown to true */ | ||
- (void)setHelpShown:(BOOL)value; | ||
|
||
/** Returns true if the help was already shown */ | ||
- (BOOL)isHelpShown; | ||
|
||
/** | ||
* This method check existance of the default resources bundle Microblink.bundle, | ||
* and throws an exception if it's missing | ||
*/ | ||
+ (NSBundle *)verifyAndGetDefaultResourcesBundle; | ||
|
||
@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
14 changes: 14 additions & 0 deletions
14
MicroBlink.framework/Headers/PPBarcodeOverlayViewController.h
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,14 @@ | ||
// | ||
// PPBarcodeOverlayViewController.h | ||
// BarcodeFramework | ||
// | ||
// Created by Jura on 22/12/13. | ||
// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPBaseBarcodeOverlayViewController.h" | ||
|
||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPBarcodeOverlayViewController : PPBaseBarcodeOverlayViewController | ||
|
||
@end |
Oops, something went wrong.