UILabel *shopAddressLabel = [[UILabel alloc]init]; //]WithFrame:CGRectMake(70, 90, SCREEN_WIDTH-80,LABEL_HEIGHT_30)];
shopAddressLabel.font = [UIFont systemFontOfSize:[kFontSize12 floatValue]];
NSString *strShopAddress = @"上海市杨浦区等等路16号";
[shopAddressLabel setNumberOfLines:0];
shopAddressLabel.lineBreakMode = UILineBreakModeWordWrap;
CGSize size = CGSizeMake(SCREEN_WIDTH-80,LABEL_HEIGHT_30);
CGSize labelsize = [strShopAddress sizeWithFont:shopAddressLabel.font constrainedToSize:size lineBreakMode:UILineBreakModeWordWrap];
[shopAddressLabel setFrame:CGRectMake(70,90, labelsize.width, labelsize.height)];
[shopAddressLabel setText:strShopAddress];
[shopAddressLabel setTextColor:RGB(160, 160, 160, 1)];
[shopInfoView addSubview:shopAddressLabel];
shopAddressLabel.font = [UIFont systemFontOfSize:[kFontSize12 floatValue]];
NSString *strShopAddress = @"上海市杨浦区等等路16号";
[shopAddressLabel setNumberOfLines:0];
shopAddressLabel.lineBreakMode = UILineBreakModeWordWrap;
CGSize size = CGSizeMake(SCREEN_WIDTH-80,LABEL_HEIGHT_30);
CGSize labelsize = [strShopAddress sizeWithFont:shopAddressLabel.font constrainedToSize:size lineBreakMode:UILineBreakModeWordWrap];
[shopAddressLabel setFrame:CGRectMake(70,90, labelsize.width, labelsize.height)];
[shopAddressLabel setText:strShopAddress];
[shopAddressLabel setTextColor:RGB(160, 160, 160, 1)];
[shopInfoView addSubview:shopAddressLabel];