我爲我的通用應用程序製作了自定義單元格。在iPhone屏幕文本是正常的,但當我移動到iPad屏幕文本從最左邊開始(如下圖所示)。我怎麼能把它移動一點(也許10px)。有沒有辦法從012px 方法中的10px開始文本標籤?提前致謝。UITableViewCell中的文本對齊
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell2";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = [firstArray objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.numberOfLines = 0;
[cell.textLabel setLineBreakMode:NSLineBreakByWordWrapping];
UIImage *background = [self cellBackgroundForRowAtIndexPath:indexPath];
cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, cell.bounds.size.width);
UIImageView *cellBackgroundView = [[UIImageView alloc] initWithImage:background];
cellBackgroundView.image = background;
cell.backgroundView = cellBackgroundView;
return cell;
}
你怎麼現在設置你的細胞?發佈一些如何創建自定義單元格的代碼 – Stonz2