Skip to content

Commit 5c24ea5

Browse files
authored
Merge pull request #6 from sudeepunnikrishnan/master
Updated the underlying framework within folder.
2 parents 9bd3fae + a7feae0 commit 5c24ea5

26 files changed

+9
-7
lines changed

Instamojo.framework/Assets.car

0 Bytes
Binary file not shown.

Instamojo.framework/Headers/Instamojo-Bridging-Header.h

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
//
21
// Instamojo-Bridging-Header.h
32
// Instamojo
4-
//
5-
// Created by Sukanya Raj on 16/02/17.
6-
// Copyright © 2017 Sukanya Raj. All rights reserved.
7-
//
83

94
#import <UIKit/UIKit.h>
105
#import <Foundation/Foundation.h>

Instamojo.framework/Headers/Instamojo-Swift.h

+9-2
Original file line numberDiff line numberDiff line change
@@ -277,15 +277,20 @@ SWIFT_CLASS("_TtC9Instamojo9Instamojo")
277277
SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL instance;)
278278
+ (BOOL)instance SWIFT_WARN_UNUSED_RESULT;
279279
+ (void)setInstance:(BOOL)value;
280+
SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL isNavigation;)
281+
+ (BOOL)isNavigation SWIFT_WARN_UNUSED_RESULT;
282+
+ (void)setIsNavigation:(BOOL)value;
280283
/// Initizalise Instamojo
281284
+ (void)setup;
282285
+ (void)enableLogWithOption:(BOOL)option;
283286
/// Sets the base url for all network calls
284287
/// @param url String
285288
+ (void)setBaseUrlWithUrl:(NSString * _Nonnull)url;
286-
/// Invoke Pre Created Payment UI
287-
/// @param order Order
289+
+ (BOOL)isNavigationStack SWIFT_WARN_UNUSED_RESULT;
288290
+ (void)invokePaymentOptionsViewWithOrder:(Order * _Nonnull)order;
291+
/// Invoke Pre Created Payment UI by passing loaded viewcontroller in scenario with multiple navigation or tab bar with navigation within
292+
/// @param order Order
293+
+ (void)invokePaymentOptionsViewWithOrder:(Order * _Nonnull)order controller:(UIViewController * _Nonnull)controller;
289294
/// Invoke Payment For Custom UI
290295
/// @param params BrowserParams
291296
+ (void)makePaymentWithParams:(BrowserParams * _Nonnull)params;
@@ -421,7 +426,9 @@ SWIFT_CLASS("_TtC9Instamojo18PaymentOptionsView")
421426
@property (nonatomic, strong) NSMutableArray * _Nonnull paymentOptions;
422427
@property (nonatomic) BOOL paymentCompleted;
423428
@property (nonatomic, strong) UIStoryboard * _Nonnull mainStoryboard;
429+
@property (nonatomic) BOOL isBackButtonNeeded;
424430
- (void)viewDidLoad;
431+
- (void)exitViewController;
425432
- (void)backToViewController;
426433
- (void)reloadDataBasedOnOrder;
427434
- (void)didReceiveMemoryWarning;

Instamojo.framework/Info.plist

0 Bytes
Binary file not shown.

Instamojo.framework/Instamojo

36.6 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)