Skip to content

Instantly share code, notes, and snippets.

@xr1337
Last active December 18, 2015 01:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xr1337/5704181 to your computer and use it in GitHub Desktop.
Save xr1337/5704181 to your computer and use it in GitHub Desktop.
RoundTouchButton 1
#import "RoundTouchButton.h"
@implementation RoundTouchButton
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment