Merge branch 'dev-fix-warning' into develop
* dev-fix-warning: no message # Conflicts: # Example/Podfile.lock # Example/Pods/Local Podspecs/PNObject.podspec.json # Example/Pods/Manifest.lock # PNObject.podspec # PNObject/Classes/PNObjectConfig.h
This commit is contained in:
commit
72d6135f67
@ -78,7 +78,7 @@
|
|||||||
* @param failure <#failure description#>
|
* @param failure <#failure description#>
|
||||||
*/
|
*/
|
||||||
+ (void) socialLoginFromViewController:(UIViewController* _Nullable) viewController
|
+ (void) socialLoginFromViewController:(UIViewController* _Nullable) viewController
|
||||||
blockSuccess:(nullable void (^)(PNUser * _Nullable responseObject))success
|
blockSuccess:(nullable void (^)(PNUser * _Nullable user))success
|
||||||
failure:(nullable void (^)(NSError * _Nonnull error))failure;
|
failure:(nullable void (^)(NSError * _Nonnull error))failure;
|
||||||
|
|
||||||
|
|
||||||
@ -87,7 +87,7 @@
|
|||||||
|
|
||||||
|
|
||||||
+ (void) socialUserFromViewController:(UIViewController* _Nullable) viewController
|
+ (void) socialUserFromViewController:(UIViewController* _Nullable) viewController
|
||||||
blockSuccess:(nullable void (^)(PNUser * _Nullable responseObject))success
|
blockSuccess:(nullable void (^)(PNUser * _Nullable user))success
|
||||||
failure:(nullable void (^)(NSError * _Nonnull error))failure;
|
failure:(nullable void (^)(NSError * _Nonnull error))failure;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -182,7 +182,7 @@ static bool isFirstAccess = YES;
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (void) registerWithBlockProgress:(nullable void (^)(NSProgress * _Nonnull uploadProgress)) uploadProgress
|
- (void) registerWithBlockProgress:(nullable void (^)(NSProgress * _Nonnull uploadProgress)) uploadProgress
|
||||||
Success:(nullable void (^)(PNUser * _Nullable responseObject))success
|
Success:(nullable void (^)(PNUser * _Nullable user))success
|
||||||
failure:(nullable void (^)(NSError * _Nonnull error))failure {
|
failure:(nullable void (^)(NSError * _Nonnull error))failure {
|
||||||
|
|
||||||
[[self class] POSTWithEndpointAction:@"registration/register" parameters:[self JSONFormObject]
|
[[self class] POSTWithEndpointAction:@"registration/register" parameters:[self JSONFormObject]
|
||||||
@ -204,7 +204,7 @@ static bool isFirstAccess = YES;
|
|||||||
|
|
||||||
|
|
||||||
+ (void) socialLoginFromViewController:(UIViewController* _Nullable) viewController
|
+ (void) socialLoginFromViewController:(UIViewController* _Nullable) viewController
|
||||||
blockSuccess:(nullable void (^)(PNUser * _Nullable responseObject))success
|
blockSuccess:(nullable void (^)(PNUser * _Nullable user))success
|
||||||
failure:(nullable void (^)(NSError * _Nonnull error))failure {
|
failure:(nullable void (^)(NSError * _Nonnull error))failure {
|
||||||
|
|
||||||
if (!viewController) {
|
if (!viewController) {
|
||||||
@ -284,7 +284,7 @@ static bool isFirstAccess = YES;
|
|||||||
}
|
}
|
||||||
|
|
||||||
+ (void) socialUserFromViewController:(UIViewController* _Nullable) viewController
|
+ (void) socialUserFromViewController:(UIViewController* _Nullable) viewController
|
||||||
blockSuccess:(nullable void (^)(PNUser * _Nullable responseObject))success
|
blockSuccess:(nullable void (^)(PNUser * _Nullable user))success
|
||||||
failure:(nullable void (^)(NSError * _Nonnull error))failure {
|
failure:(nullable void (^)(NSError * _Nonnull error))failure {
|
||||||
|
|
||||||
if (!viewController) {
|
if (!viewController) {
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
#import "PNObjectConstants.h"
|
#import "PNObjectConstants.h"
|
||||||
#import "PNObject+Protected.h"
|
#import "PNObject+Protected.h"
|
||||||
#import "objc/runtime.h"
|
#import "objc/runtime.h"
|
||||||
#import "PNObject+PNObjectConnection.m"
|
#import "PNObject+PNObjectConnection.h"
|
||||||
#import <RZDataBinding/RZDataBinding.h>
|
#import <RZDataBinding/RZDataBinding.h>
|
||||||
#import "HTTPStatusCodes.h"
|
#import "HTTPStatusCodes.h"
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user