Skip to content

Instantly share code, notes, and snippets.

@LazyClutch
Created April 25, 2016 02:43
Show Gist options
  • Save LazyClutch/07169341eb85b5c11a3f8493bbfecea2 to your computer and use it in GitHub Desktop.
Save LazyClutch/07169341eb85b5c11a3f8493bbfecea2 to your computer and use it in GitHub Desktop.
My UITableViewCell Delegate
//
// ___FILENAME___
// ___PROJECTNAME___
//
// Created by ___FULLUSERNAME___ on ___DATE___.
//___COPYRIGHT___
//
#import "___FILEBASENAME___.h"
@interface ___FILEBASENAMEASIDENTIFIER___ ()
@end
@implementation ___FILEBASENAMEASIDENTIFIER___
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
[self setupViewsAndConstraints];
}
return self;
}
- (void)prepareForReuse
{
}
#pragma mark - event response -
#pragma mark - delegate -
#pragma mark - private -
- (void)setupViewsAndConstraints
{
}
#pragma mark - getter -
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment