Like Pinterest and Instagram, for shopping. A cool custom design, with clean dashboard style home, and deep scrolling image/product screens. This is the killer template to start a social/business app from.
The social shopping iOS app template Like Pinterest and Instagram, for shopping. A cool custom design, with clean dashboard style home, and deep scrolling image/product screens. This is the killer template to start a social/business app from. Also on Android What’s included in this download App Template Xcode project written in native Objective-C Original layered […]
//
// ShowcaseItemData.m
// TapTag
//
// Copyright (c) 2014 MyAppTemplates. All rights reserved.
//
#import "ShowcaseItemData.h"
@implementation ShowcaseItemData
- (id) init
{
if ((self = [super init])) {
_strName = @"";
_strImage = @"";
_likes = 0;
_price = 0;
}
return self;
}
- (id) initWithName:(NSString *)name image:(NSString *)image likes:(int)likes price:(float)price
{
if ((self = [super init])) {
_strName = name;
_strImage = image;
_likes = likes;
_price = price;
}
return self;
}
@end