//
//  CustomTextContact.m
//  Ben Ellaby
//
//  Created by Hieu Nguyen on 4/3/13.
//  Copyright (c) 2013 Hieu Nguyen. All rights reserved.
//

#import "CustomTextContact.h"

@implementation CustomTextContact

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}

- (BOOL)canBecomeFirstResponder
{
    return NO;
}

/*
 // Only override drawRect: if you perform custom drawing.
 // An empty implementation adversely affects performance during animation.
 - (void)drawRect:(CGRect)rect
 {
 // Drawing code
 }
 */

@end
