Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shopify_iossdk
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cemarose
shopify_iossdk
Commits
d7491527
Commit
d7491527
authored
Oct 02, 2015
by
Rune Madsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #3 Prefetch shop and pass into the BUYApplePayHelpers class
parent
d1dc5447
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
CheckoutViewController.m
...d/Mobile Buy SDK Advanced Sample/CheckoutViewController.m
+8
-2
No files found.
Mobile Buy SDK Sample Apps/Sample App Advanced/Mobile Buy SDK Advanced Sample/CheckoutViewController.m
View file @
d7491527
...
...
@@ -38,6 +38,7 @@ NSString * const MerchantId = @"";
@property
(
nonatomic
,
strong
)
BUYCheckout
*
checkout
;
@property
(
nonatomic
,
strong
)
BUYClient
*
client
;
@property
(
nonatomic
,
strong
)
BUYShop
*
shop
;
@property
(
nonatomic
,
strong
)
NSArray
*
summaryItems
;
@property
(
nonatomic
,
strong
)
BUYApplePayHelpers
*
applePayHelper
;
...
...
@@ -100,6 +101,11 @@ NSString * const MerchantId = @"";
self
.
tableView
.
tableFooterView
=
footerView
;
[
self
.
tableView
registerClass
:[
SummaryItemsTableViewCell
class
]
forCellReuseIdentifier
:
@"SummaryCell"
];
// Prefetch the shop object for Apple Pay
[
self
.
client
getShop
:
^
(
BUYShop
*
shop
,
NSError
*
error
)
{
_shop
=
shop
;
}];
}
-
(
void
)
setCheckout
:
(
BUYCheckout
*
)
checkout
...
...
@@ -239,8 +245,8 @@ NSString * const MerchantId = @"";
PKPaymentRequest
*
request
=
[
self
paymentRequest
];
PKPaymentAuthorizationViewController
*
paymentController
=
[[
PKPaymentAuthorizationViewController
alloc
]
initWithPaymentRequest
:
request
];
self
.
applePayHelper
=
[[
BUYApplePayHelpers
alloc
]
initWithClient
:
self
.
client
checkout
:
self
.
checkout
];
self
.
applePayHelper
=
[[
BUYApplePayHelpers
alloc
]
initWithClient
:
self
.
client
checkout
:
self
.
checkout
shop
:
self
.
shop
];
paymentController
.
delegate
=
self
;
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment