1

如图所示,如何创建这个圆角矩形?另外我的第二个问题是如何获得多行,如何格式化以使其成为多行,如红色矩形所示?提前致谢!。

CGRect viewRect=CGRectMake(30,30,320,55);
UIView *myView=[[UIView alloc]initWithFrame:viewRect];
myView.backGroundColor=[UIColor whiteColor];
[self.view addSubview:myView]

UILabel *label=[[UILabel alloc]initwithFrame:CGRectMake(30,32,25,12)];
label.font=[UIFont fontWithName:"System" size:12];
label.textColor=[UIColor blackColor];
[self.view addSubview:label]

在此处输入图像描述

4

1 回答 1

1

您提供的示例可能实现为UITableView. 地址单元格具有UITableViewCellStyleValue2样式,textLabel左侧(“地址”)和detailTextLabel右侧都有。

以下是格式化单元格的方法:

static NSString *CellIdentifier = @"MyCell"; 
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"address";
cell.detailTextLabel.text = @"7200—7232 W Orem Dr\nHouston Texas 77085\nUnited States";
cell.detailTextLabel.numberOfLines = 3;
cell.detailTextLabel.lineBreakMode = UILineBreakModeWordWrap;

您还必须相应地调整单元格的高度,因为它将高于默认值。

资料来源: 使用 UILabel 的多行 UITableViewCell(通过类似的 Stack Overflow 问题

于 2012-09-28T17:10:05.683 回答