Is really very simple to add to your application a gift shop to offer your users. With few lines of code you can give your users the opportunity to purchase T-shirts personalized mugs, iphone / ipad cover and other types of gifts, also allowing you to
add a further financial gain and increasing the popularity of your products.
In this version there is a detailed example of how to use the framework, but just use these simple commands, listed below, to get full functionality :
#import ‹MyZazzleStore/MyZazzleStore.h›
MYZazzleStore myStore = [[MYZazzleStore alloc]
initWithFrame:CGRectMake(0, 50, 320, 410)];
myStore.imageLink = @"http://www.my-domain.com/my-image.png";
// your Zazzle ID, this will allow you to earn referral on purchases (optional)
myStore.accountId = 1234567890;
[myStore reload];
[self.view addSubview:myStore.view];
|
Using the delegates provided by the framework, can also customize the image for each product type. Everything you need to know to use this framework, is included in detailed example, as you will see is really simple and will can add values to your applications.