- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
NSArray *nib = [[NSBundle mainBundle]loadNibNamed:@"View" owner:self options:nil];
UIView *tmpCustomView = [nib objectAtIndex:0];
CGRect tmpFrame = [[UIScreen mainScreen] bounds];
[tmpCustomView setCenter:CGPointMake(tmpFrame.size.width / 2, tmpFrame.size.height / 2)];
self.view=tmpCustomView;
return self;
}