我创建了一个 UITableView 并在cellForRowAtIndexPath
static NSString *CellIdentifier = @"RootViewControllerCellIdentifier";
UITableViewCell *cell = [self.tableView queueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.selectionStyle = UITableViewCellSelectionStyleGray;
}
// Set appropriate labels for the cells.
switch (indexPath.row) {
case 0:
cell.textLabel.text = @"Static Scenes";
**[cell.textLabel setFrame:CGRectMake(200, 20, 500,600)];**
cell.imageView.image=[UIImage imageNamed:@"RunOptionsImage.png"];
cell.imageView.frame=CGRectMake(15, 20, 55, 65);
break;
正如您从上面的代码中可以理解的那样,我有一个名为Static Scenes 的 tableview 单元格 textLabel 。
在这段代码中[cell.textLabel setFrame:CGRectMake(200, 20, 500,600)]; 我打算设置 textLabel 的框架。但它没有根据我设置的框架调整大小。我也使用了这个 cell.textLabel.frame = CGRectMake(200, 20, 500,600) 代码。谁能告诉我调整文本标签大小的好方法。