User Tools

Site Tools


developers:peig-api:ios

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
developers:peig-api:ios [2018/07/11 07:37]
dskrbek [Response ApiResult]
developers:peig-api:ios [2019/08/01 10:03]
tjotov removed
Line 1: Line 1:
 ====== iOS implementation of PEIG API ====== ====== iOS implementation of PEIG API ======
- 
-//See [[https://github.com/aducid-dev/peigapi-ios/|DemoBank]] example// 
  
 ===== Description ===== ===== Description =====
Line 128: Line 126:
 </code> </code>
  
-Method handleOpenURL is defined in protocol class <font inherit/inherit;;black;;inherit>UIApplicationDelegate.</font>+Method handleOpenURL is defined in protocol class **UIApplicationDelegate**.
  
 ===== Retrieving data when it is authenticated ===== ===== Retrieving data when it is authenticated =====
Line 138: Line 136:
 <code objc> <code objc>
 - (void) getAducidOperation:(NSString*)url withParameters:(id)params withDelegate:(id<LibServiceDelegate>)delegate withDataSourceCompletionHandler:(void (^) (ApiResult*))successDataHandler withDataSourceErrorHandler:(void (^)(NSString*))failureDataHandler; - (void) getAducidOperation:(NSString*)url withParameters:(id)params withDelegate:(id<LibServiceDelegate>)delegate withDataSourceCompletionHandler:(void (^) (ApiResult*))successDataHandler withDataSourceErrorHandler:(void (^)(NSString*))failureDataHandler;
 +
 - (void) postAducidOperation:(NSString*)url withParameters:(id)params withDelegate:(id<LibServiceDelegate>)delegate withDataSourceCompletionHandler:(void (^) (ApiResult*))successDataHandler withDataSourceErrorHandler:(void (^)(NSString*))failureDataHandler; - (void) postAducidOperation:(NSString*)url withParameters:(id)params withDelegate:(id<LibServiceDelegate>)delegate withDataSourceCompletionHandler:(void (^) (ApiResult*))successDataHandler withDataSourceErrorHandler:(void (^)(NSString*))failureDataHandler;
 </code> </code>