Я создал 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;
, как вы можете понять из приведенного выше кода, у меня есть textLabel ячейки табличного представления с именем Статические сцены .
в этом коде [cell.textLabel setFrame: CGRectMake (200, 20, 500,600)]; я планирую установить фрейм textLabel.но этоне меняя размер в соответствии с установленным мною кадром.я также использовал этот код cell.textLabel.frame = CGRectMake (200, 20, 500,600).может кто-нибудь сказать мне хороший способ изменить размер текстовой метки.