Advertisement
priore

Add a gift shop to your iOS application

May 17th, 2012
1,561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // With MYZazzleStore SDK it's really simple to add a gift shop to your application for your users.
  2. // With a few lines of code you can give your users the opportunity to purchase T-shirts personalized
  3. // mugs, iphone / ipad covers and other types of gifts. It also allows you to increase financial gains
  4. // and increase the popularity of your products.
  5.  
  6. MYZazzleStore myStore = [[MYZazzleStore alloc] initWithFrame:CGRectMake(0, 50, 320, 410)];
  7. myStore.imageLink = @"http://www.my-domain.com/my-image.png";
  8. // your Zazzle ID, this will allow you to earn referral on purchases (optional)
  9. myStore.accountId = 1234567890;
  10. [myStore reload];
  11. [self.view addSubview:myStore.view];
  12.  
  13. // look sample source code https://github.com/priore/MYZazzleStore
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement