UIView *footView=[[UIView alloc] initWithFrame:CGRectMake(0, 0,ScreenWidth , 90)];
UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
[btn setImage:[UIImage imageNamed:@"8" ]forState:UIControlStateNormal];
[btn setImage:[UIImage imageNamed:@"22" ]forState:UIControlStateHighlighted];
btn.frame=CGRectMake(0, 35, ScreenWidth, 45);
btn.userInteractionEnabled=YES;//
[btn addTarget:self action:@selector(btnSearch) forControlEvents:UIControlEventTouchUpInside];
[footView addSubview: btn];
UILabel *lab=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, 45)];
lab.userInteractionEnabled = YES;//
lab.textAlignment=NSTextAlignmentCenter;
lab.textColor=white1;
lab.text=@"2012年3月1日加入";
lab.backgroundColor=[UIColor clearColor];
lab.font=[UIFont systemFontOfSize:15.0f];
[btn addSubview:lab];
[lab release];
_tableView.tableFooterView=footView;
[footView release];