+(NSMutableArray*)getHomeSearch{
NSMutableArray *ary=[[NSMutableArray alloc]init];
NSArray *array;
array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"buslinessTime" ofType:@"plist"]];
for (NSDictionary *item in array) {
HomeSearch *hsh=[[HomeSearch alloc]init];
hsh.name=[item objectForKey:@"name"];
hsh.imgUrl =[item objectForKey:@"imgurl"];
hsh.sale =[item objectForKey:@"sale"];
hsh.price=[item objectForKey:@"price"];
hsh.evaluate =[item objectForKey:@"evaluate"];
[ary addObject:hsh];
}
return ary;
}