The daily deal template brings life to your shopping apps. The main screen has a featured product item above a list of the other products you may have. Each item of course has a thumbnail you can use to show off the product.
You are not a designer? Perfect. here is another opportunity to superhero skills of a designer into your app.
And instead of charging you $70, we have decided to give it to you if you want to spread the message.
See the Share bar on the left? Share this page on Twitter/Facebook and download the template below

The detail view gives you a nice screen to display more information about the product. Stuff like metrics and price information.

It also has an iPad screen, making this a universal template. It sports a split screen with the list of products on the left and a detail view on the right.

Need payment buttons? We have got your covered. There are two variants, one for Paypal and the other for credit card payments.
So what are you waiting for…
Share this page on Facebook and then download the template below
Want to try out a sample template to see what you get when you buy? Click the button below

Hi,
I have got this package from the Pay with a Tweet option. I get an error when I try to build this package. Is that right? Or do I need to do some changes before I can build and run the package on Simulator?
Hi Tope
This is an excellent App – love the tableview and how you present the data as well as add new information.
I do have one question – how could you build this so that you could update the details in the App with out having to go to Apple each time ? Server comes to mind,but I don’t want to just limit myself to that. Could you do it with a PList for example ?
I am open to all ideas.
Iain
Hi Iain..Do you mean having the data come from a web server?
Try these two tutorials
http://www.raywenderlich.com/2965/how-to-write-an-ios-app-that-uses-a-web-service
and
http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-app
Hi Tope
Thanks for getting back to me.
Yes – it would be nice to have it come from something like a web server or plist.
Iain
Excellent app.
How do you add data to the Finer Details section?
I added Deals.m
deal.finecontents = [data objectForKey:@"finecontents"];
Build the arrayWithObjects in Repository.m
Modify the height and section, and also the following
- (void)setDetailItem:(Deal *)newDetailItem
{
if (_detailItem != newDetailItem) {
_detailItem = newDetailItem;
// Update the view.
[wygTable reloadData];
[fdTable reloadData];
}
}
Modifiy the section
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if(tableView == fdTable) {
NSString *cellIdentifier = @”CellFD”;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(!cell) {
cell = [[AdjustableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.imageView.image = [UIImage imageNamed:@"check.png"];
cell.textLabel.text = [_detailItem.finecontents objectAtIndex:indexPath.row];
cell.textLabel.numberOfLines = 0;
cell.textLabel.font = APP_GLOBAL_FONT;
cell.textLabel.textColor = [UIColor darkGrayColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
}
- (UIView *)FDView {
UIView *fdView = [[UIView alloc] initWithFrame:CGRectZero];
fdView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
fdTable = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
fdTable.separatorStyle = UITableViewCellSeparatorStyleNone;
fdTable.delegate = self;
fdTable.dataSource = self;
[fdView addSubview:fdTable];
return fdView;
}
The Finer details still not displaying. Anything that I missed out? Can you please help me out. Thanks.
I liked you designs a lot. I will be following your site to look for new designs. Question –
Does your PSD come with the images shown on your site with tilted iPhone or iPhone lying down on a desk or bg? How do you design the images shown on the portfolio? Or do you actually take a picture using a camera with the iPhone lying on a table?
I am trying to find a nice way to demonstrate the apps I have developed.
thanks in advance for your feedback.
Hi AJ,
You are in luck. I just posted a tutorial on how to do that.
See it here
http://www.appdesignvault.com/iphone-mockup/
I’m a professional Web developer. My app’s purpose would be for my clients to log into their account to pay me scheduled payments (monthly or annually based on their hosting plan), check their account info, contact me via form-based contact form, and check upcoming events on a list-view calendar (where I can talk about news and offers). I like the look of this design, but is there a way of adding tabs at the bottom that match the theme where I could have these four tabs available. Also, when logged out, I’d like four tabs: front page info, payment plans, contact me via form-based contact form, and “Log In”. What do you think would be the best option?