// // MGMContactView.m // VoiceMob // // Created by Mr. Gecko on 9/29/10. // Copyright (c) 2010 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/ // #import "MGMContactView.h" #import @implementation MGMContactView - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) { photoView = [[UIImageView alloc] initWithFrame:CGRectZero]; [[self contentView] addSubview:photoView]; nameField = [[UILabel alloc] initWithFrame:CGRectZero]; [nameField setBackgroundColor:[UIColor clearColor]]; [nameField setFont:[UIFont boldSystemFontOfSize:18.0]]; [[self contentView] addSubview:nameField]; phoneField = [[UILabel alloc] initWithFrame:CGRectZero]; [phoneField setBackgroundColor:[UIColor clearColor]]; [phoneField setFont:[UIFont systemFontOfSize:15.0]]; [[self contentView] addSubview:phoneField]; } return self; } - (void)dealloc { if (photoView!=nil) [photoView release]; if (nameField!=nil) [nameField release]; if (phoneField!=nil) [phoneField release]; [super dealloc]; } - (void)setThemeManager:(MGMThemeManager *)theThemeManager { themeManager = theThemeManager; } - (void)setContact:(NSDictionary *)theContact { if (contact!=nil) [contact release]; contact = [theContact retain]; } - (void)layoutSubviews { [super layoutSubviews]; CGRect frameRect = [[self contentView] bounds]; if (contact!=nil) { if ([contact objectForKey:MGMCPhoto]==nil || [[contact objectForKey:MGMCPhoto] isKindOfClass:[NSNull class]]) [photoView setImage:[[[UIImage alloc] initWithContentsOfFile:[themeManager incomingIconPath]] autorelease]]; else [photoView setImage:[[[UIImage alloc] initWithData:[contact objectForKey:MGMCPhoto]] autorelease]]; if ([[contact objectForKey:MGMCName] isEqual:@""]) [nameField setText:[contact objectForKey:MGMCCompany]]; else [nameField setText:[contact objectForKey:MGMCName]]; if ([[contact objectForKey:MGMCLabel] isEqual:@""]) [phoneField setText:[[contact objectForKey:MGMCNumber] readableNumber]]; else [phoneField setText:[NSString stringWithFormat:@"%@ %@", [[contact objectForKey:MGMCNumber] readableNumber], [contact objectForKey:MGMCLabel]]]; } [photoView setFrame:CGRectMake(0, 0, frameRect.size.height, frameRect.size.height)]; [nameField setFrame:CGRectMake(frameRect.size.height+8, 10, frameRect.size.width-(frameRect.size.height+12), 20)]; [phoneField setFrame:CGRectMake(frameRect.size.height+8, frameRect.size.height-27, frameRect.size.width-(frameRect.size.height+12), 20)]; } @end