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:58]
dskrbek [Handle result from PEIG]
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 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>