//
//  CustomWebView.m
//  Minfo
//
//  Created by Nguyen Hieu on 1/15/13.
//  Copyright (c) 2013 Nguyen Hieu. All rights reserved.
//

#import "CustomWebView.h"

@implementation CustomWebView
@synthesize tag2;
- (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
