Full refund within 14 days of purchase date.
We all agree that push button is almost the most frequently used UI component in any type of apps. And yes, mobile apps is no exception.
If you ever felt like;
Then, this is for you.
Glossy Button for iOS is a beautiful & professional looking push button control for iPhone & iPad apps. Multi-color support & high-quality retina graphics. Plus a custom UITableViewCell for incorporating buttons into your tableviews easily with the least effort.
Features at a glance:
See high-quality screenshots of Glossy Button in action or see the demo video.
What is included:
See Glossy Button Integration Manual video or read the instructions below.
Add SSGlossyButton.framework & SSGlossyButton.bundle to your Xcode project by dragging & dropping the SSGlossyButton folder into your project's folder structure in Xcode:

In your target's build settings, add these flags to the "Other Linker Flags" item:
-all_load -ObjC

For creating glossy buttons from code:
#import
...
SSGlossyButton *button =
[[[SSGlossyButton alloc] initWithStyle:kSSGlossyButtonStyleBlue
frame:CGRectMake(20.0f, 20.0f, 280.0f, 0.0f)
title:@"Button Title"
block:^(SSGlossyButton *button) {
NSLog(@"Button tapped.");
}] autorelease];
[self.view addSubview:button];
For adding glossy buttons to your view from the Interface Builder;

For incorporating glossy buttons into your table views;
#import
...
- (UITableViewCell *) tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
SSGlossyButtonCell *buttonCell =
[[[SSGlossyButtonCell alloc] initWithButtonStyle:kSSGlossyButtonStyleGreen
reuseIdentifier:@"ButtonCell"
title:[NSString stringWithFormat:
@"Button - %i", indexPath.row]
block:^(SSGlossyButton *button) {
NSLog(@"Button tapped.");
}] autorelease];
return buttonCell;
}
- (CGFloat) tableView:(UITableView *)tableView
heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return [SSGlossyButtonCell cellHeight];
}
For more information on how to use and configure Glossy Button in your project, check the rich demo included in the package.
Questions & Comments