画像が小さい場合でも、UITableViewCellのImageViewを固定サイズにする方法


104

セルの画像ビューに使用している画像がたくさんあります。それらはすべて50x50以下です。例:40x50、50x32、20x37 .....

テーブルビューをロードすると、画像の幅が変化するため、テキストが整列しません。また、左側ではなく中央に小さな画像を表示したいと思います。

これが「cellForRowAtIndexPath」メソッド内で私が試しているコードです

cell.imageView.autoresizingMask = ( UIViewAutoresizingNone );
cell.imageView.autoresizesSubviews = NO;
cell.imageView.contentMode = UIViewContentModeCenter;
cell.imageView.bounds = CGRectMake(0, 0, 50, 50);
cell.imageView.frame = CGRectMake(0, 0, 50, 50);
cell.imageView.image = [UIImage imageWithData: imageData];

ご覧のとおり、私はいくつかのことを試しましたが、どれもうまくいきません。

回答:


152

すべてを書き直す必要はありません。代わりにこれを行うことをお勧めします:

これをカスタムセルの.mファイル内に投稿します。

- (void)layoutSubviews {
    [super layoutSubviews];
    self.imageView.frame = CGRectMake(0,0,32,32);
}

これはうまくトリックをする必要があります。:]


28
設定self.imageView.boundsすると、画像が中央に配置されます。
BLeB、2011年

45
のサブクラスを追加しないとUITableViewCellどうなりますか?
非極性

3
@動静的能量:UITableViewCellをサブクラス化することは、これを機能させるための主要なトリックです。
auco、2013年

5
これは私にはうまくいきません。画像はまだimageView全体を飲み込んでいます。
joslinm 2013年

14
ラベルがずれているので、私にとってもうまくいきません。
nverinaud 2013年

139

サブクラスを持たないあなたのためにUITableViewCell

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
 [...]

      CGSize itemSize = CGSizeMake(40, 40);
      UIGraphicsBeginImageContextWithOptions(itemSize, NO, UIScreen.mainScreen.scale);
      CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height);
      [cell.imageView.image drawInRect:imageRect];
      cell.imageView.image = UIGraphicsGetImageFromCurrentImageContext();
      UIGraphicsEndImageContext();

 [...]
     return cell;
}

上記のコードは、サイズを40x40に設定します。

スウィフト2

    let itemSize = CGSizeMake(25, 25);
    UIGraphicsBeginImageContextWithOptions(itemSize, false, UIScreen.mainScreen().scale);
    let imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height);
    cell.imageView?.image!.drawInRect(imageRect)
    cell.imageView?.image! = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

または、@ Tommyによって提案された別の(テストされていない)アプローチを使用できます。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
 [...]

      CGSize itemSize = CGSizeMake(40, 40);
      UIGraphicsBeginImageContextWithOptions(itemSize, NO, 0.0)          
 [...]
     return cell;
}

Swift 3以上

let itemSize = CGSize.init(width: 25, height: 25)
UIGraphicsBeginImageContextWithOptions(itemSize, false, UIScreen.main.scale);
let imageRect = CGRect.init(origin: CGPoint.zero, size: itemSize)
cell?.imageView?.image!.draw(in: imageRect)
cell?.imageView?.image! = UIGraphicsGetImageFromCurrentImageContext()!;
UIGraphicsEndImageContext();

上記のコードは、上記のSwift 3+バージョンです。


3
画像のゆがみは、UIGraphicsBeginImageContextWithOptions(itemSize、NO、UIScreen.mainScreen.scale);で修正できます。UIGraphicsBeginImageContext(itemSize);の代わりに
キランルースR

1
いい答えだ。ところで、私はオプションを取得できなかったので、そのままUIScreen.mainScreen.scale進みましたUIGraphicsBeginImageContext。また、基本セルのimageViewのサイズを変更しました。
denikov 14年

3
@GermanAttanasioRuizは、元のサイズに再度変更されたセルを選択すると、その方法であると思われますか、それを解決する方法。
Bonnie

6
私のように混乱したすべての人にとって、コンテキストの開始前に画像を設定する必要があります。つまり、cell.imageView.image = [UIImage imageNamed:@ "my_image.png"];
ガイ・ロウ

5
このようなコストのかかる操作は、cellForRowAtIndexPathの一部であってはなりません
Krizai

33

ここに私がそれをした方法があります。この手法では、テキストと詳細テキストのラベルを左に適切に移動します。

@interface SizableImageCell : UITableViewCell {}
@end
@implementation SizableImageCell
- (void)layoutSubviews {
    [super layoutSubviews];

    float desiredWidth = 80;
    float w=self.imageView.frame.size.width;
    if (w>desiredWidth) {
        float widthSub = w - desiredWidth;
        self.imageView.frame = CGRectMake(self.imageView.frame.origin.x,self.imageView.frame.origin.y,desiredWidth,self.imageView.frame.size.height);
        self.textLabel.frame = CGRectMake(self.textLabel.frame.origin.x-widthSub,self.textLabel.frame.origin.y,self.textLabel.frame.size.width+widthSub,self.textLabel.frame.size.height);
        self.detailTextLabel.frame = CGRectMake(self.detailTextLabel.frame.origin.x-widthSub,self.detailTextLabel.frame.origin.y,self.detailTextLabel.frame.size.width+widthSub,self.detailTextLabel.frame.size.height);
        self.imageView.contentMode = UIViewContentModeScaleAspectFit;
    }
}
@end

...

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[SizableImageCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    cell.textLabel.text = ...
    cell.detailTextLabel.text = ...
    cell.imageView.image = ...
    return cell;
}

ありがとう、クリス。これは完全に機能しました。現在ARCで禁止されているため、自動リリースを削除して更新することもできます。素晴らしい答えです!
CSawy 14

1
これは今日でも最良のソリューションです。ありがとうございました。
レミBelzanti

最近は、ストーリーボードでxibまたはプロトタイプセルを使用してカスタムセルを作成し、スタンダードセルの画像ビューとは無関係な他の画像ビュー全体を作成することをお勧めします。しかし、これはまだ十分簡単です。
Chris

1
xibやストーリーボードを使用する代わりに、コードですべてを実行したいのですが、これは完全に機能しました。
John81

w <desiredWithの場合、この回答は何もしません。これは、(少なくとも質問では)興味のあるユースケースのようです。
2018

21

画像ビューをサブビューとしてテーブルビューセルに追加

UIImageView *imgView=[[UIImageView alloc] initWithFrame:CGRectMake(20, 5, 90, 70)];
imgView.backgroundColor=[UIColor clearColor];
[imgView.layer setCornerRadius:8.0f];
[imgView.layer setMasksToBounds:YES];
[imgView setImage:[UIImage imageWithData: imageData]];
[cell.contentView addSubview:imgView];

1
ARCを使用していない場合は、imgViewをリリースすることを忘れないでください。
チャーリーモンロー

14

セル全体を作り直す必要はありません。tableViewCellsのindentationLevelおよびindentationWidthプロパティを使用して、セルのコンテンツをシフトできます。次に、カスタムimageViewをセルの左側に追加します。


6

画像ビューを作成してセルにサブビューとして追加すると、目的のフレームサイズを取得できます。


試したところ、見た目は良いようですが、セル内のテキストが画像と重なっています。コンテンツビューを右に50ピクセル移動するにはどうすればよいですか。cell.contentView.bounds = CGRectMake(50、0、270、50); 影響はありません
ロバート

1
セルのデフォルトビューを使用する代わりに、ラベルを作成し、それをサブビューとしてセルに追加して、テキストをlabel textプロパティに割り当てます。これにより、要件に応じてセルを設計できます。
戦士

これは、セルにタイトル、日付、説明など、より多くの値を表示する場合に役立ちます。
戦士

わかりましたので、基本的に病気はプログラムでセルを作り直す必要があります。難しいことではありません。助けてくれてありがとう。
ロバート

6

単にスイフト

ステップ1:UITableViewCell
ステップ2の 1つのサブクラスを作成するこのメソッドをUITableViewCellのサブクラスに追加します。

override func layoutSubviews() {
    super.layoutSubviews()
    self.imageView?.frame = CGRectMake(0, 0, 10, 10)
}

ステップ3:で、そのサブクラスを使用して、セルオブジェクトを作成しcellForRowAtIndexPath

Ex: let customCell:CustomCell = CustomCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")

ステップ4:楽しむ


2
UIImage *image = cell.imageView.image;

UIGraphicsBeginImageContext(CGSizeMake(35,35));
// draw scaled image into thumbnail context

[image drawInRect:CGRectMake(5, 5, 35, 35)]; //
UIImage *newThumbnail = UIGraphicsGetImageFromCurrentImageContext();
// pop the context
UIGraphicsEndImageContext();
if(newThumbnail == nil)
{
    NSLog(@"could not scale image");
    cell.imageView.image = image;
}
else
{
    cell.imageView.image = newThumbnail;
}

2

これは私にとって迅速に機能しました:

UITableViewCellのサブクラスを作成します(ストーリーボードでセルをリンクしてください)

class MyTableCell:UITableViewCell{
    override func layoutSubviews() {
        super.layoutSubviews()

        if(self.imageView?.image != nil){

            let cellFrame = self.frame
            let textLabelFrame = self.textLabel?.frame
            let detailTextLabelFrame = self.detailTextLabel?.frame
            let imageViewFrame = self.imageView?.frame

            self.imageView?.contentMode = .ScaleAspectFill
            self.imageView?.clipsToBounds = true
            self.imageView?.frame = CGRectMake((imageViewFrame?.origin.x)!,(imageViewFrame?.origin.y)! + 1,40,40)
            self.textLabel!.frame = CGRectMake(50 + (imageViewFrame?.origin.x)! , (textLabelFrame?.origin.y)!, cellFrame.width-(70 + (imageViewFrame?.origin.x)!), textLabelFrame!.height)
            self.detailTextLabel!.frame = CGRectMake(50 + (imageViewFrame?.origin.x)!, (detailTextLabelFrame?.origin.y)!, cellFrame.width-(70 + (imageViewFrame?.origin.x)!), detailTextLabelFrame!.height)
        }
    }
}

cellForRowAtIndexPathで、セルを新しいセルタイプとしてデキューします。

    let cell = tableView.dequeueReusableCellWithIdentifier("MyCell", forIndexPath: indexPath) as! MyTableCell

明らかにレイアウトに合うように数値を変更してください


1

@GermanAttanasioの回答を使用して拡張機能を作成しました。これは、画像のサイズを希望のサイズに変更する方法と、画像に透明なマージンを追加しながら同じことを行う別の方法を提供します(これは、画像にマージンを持たせたいテーブルビューにも役立ちます)。

import UIKit

extension UIImage {

    /// Resizes an image to the specified size.
    ///
    /// - Parameters:
    ///     - size: the size we desire to resize the image to.
    ///
    /// - Returns: the resized image.
    ///
    func imageWithSize(size: CGSize) -> UIImage {

        UIGraphicsBeginImageContextWithOptions(size, false, UIScreen.mainScreen().scale);
        let rect = CGRectMake(0.0, 0.0, size.width, size.height);
        drawInRect(rect)

        let resultingImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

        return resultingImage
    }

    /// Resizes an image to the specified size and adds an extra transparent margin at all sides of
    /// the image.
    ///
    /// - Parameters:
    ///     - size: the size we desire to resize the image to.
    ///     - extraMargin: the extra transparent margin to add to all sides of the image.
    ///
    /// - Returns: the resized image.  The extra margin is added to the input image size.  So that
    ///         the final image's size will be equal to:
    ///         `CGSize(width: size.width + extraMargin * 2, height: size.height + extraMargin * 2)`
    ///
    func imageWithSize(size: CGSize, extraMargin: CGFloat) -> UIImage {

        let imageSize = CGSize(width: size.width + extraMargin * 2, height: size.height + extraMargin * 2)

        UIGraphicsBeginImageContextWithOptions(imageSize, false, UIScreen.mainScreen().scale);
        let drawingRect = CGRect(x: extraMargin, y: extraMargin, width: size.width, height: size.height)
        drawInRect(drawingRect)

        let resultingImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

        return resultingImage
    }
}

1

これがSwift 3用に書かれた@germanattanasioの作業方法です

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    ...
    cell.imageView?.image = myImage
    let itemSize = CGSize(width:42.0, height:42.0)
    UIGraphicsBeginImageContextWithOptions(itemSize, false, 0.0)
    let imageRect = CGRect(x:0.0, y:0.0, width:itemSize.width, height:itemSize.height)
    cell.imageView?.image!.draw(in:imageRect)
    cell.imageView?.image! = UIGraphicsGetImageFromCurrentImageContext()!
        UIGraphicsEndImageContext()
}

1

使用するcell.imageView?.translatesAutoresizingMaskIntoConstraints = false場合は、imageViewに制約を設定できます。これは、プロジェクトで使用した実用的な例です。私はサブクラス化を避け、プロトタイプセルを使用してストーリーボードを作成する必要はありませんでしたが、実行にかなりの時間がかかりました。おそらく、より簡単で簡潔な方法がない場合にのみ使用するのが最善です。

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return 80
}



    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = UITableViewCell(style: .subtitle, reuseIdentifier: String(describing: ChangesRequiringApprovalTableViewController.self))

    let record = records[indexPath.row]

    cell.textLabel?.text = "Title text"

    if let thumb = record["thumbnail"] as? CKAsset, let image = UIImage(contentsOfFile: thumb.fileURL.path) {
        cell.imageView?.contentMode = .scaleAspectFill
        cell.imageView?.image = image
        cell.imageView?.translatesAutoresizingMaskIntoConstraints = false
        cell.imageView?.leadingAnchor.constraint(equalTo: cell.contentView.leadingAnchor).isActive = true
        cell.imageView?.widthAnchor.constraint(equalToConstant: 80).rowHeight).isActive = true
        cell.imageView?.heightAnchor.constraint(equalToConstant: 80).isActive = true
        if let textLabel = cell.textLabel {
            let margins = cell.contentView.layoutMarginsGuide
            textLabel.translatesAutoresizingMaskIntoConstraints = false
            cell.imageView?.trailingAnchor.constraint(equalTo: textLabel.leadingAnchor, constant: -8).isActive = true
            textLabel.topAnchor.constraint(equalTo: margins.topAnchor).isActive = true
            textLabel.trailingAnchor.constraint(equalTo: margins.trailingAnchor).isActive = true
            let bottomConstraint = textLabel.bottomAnchor.constraint(equalTo: margins.bottomAnchor)
            bottomConstraint.priority = UILayoutPriorityDefaultHigh
            bottomConstraint.isActive = true
            if let description = cell.detailTextLabel {
                description.translatesAutoresizingMaskIntoConstraints = false
                description.bottomAnchor.constraint(equalTo: margins.bottomAnchor).isActive = true
                description.trailingAnchor.constraint(equalTo: margins.trailingAnchor).isActive = true
                cell.imageView?.trailingAnchor.constraint(equalTo: description.leadingAnchor, constant: -8).isActive = true
                textLabel.bottomAnchor.constraint(equalTo: description.topAnchor).isActive = true
            }
        }
        cell.imageView?.clipsToBounds = true
    }

    cell.detailTextLabel?.text = "Detail Text"

    return cell
}

0

通常のUITableViewCellは配置に適していますが、cell.imageViewは意図したとおりに動作していないようです。最初にcell.imageViewに適切なサイズの画像を与えることにより、UITableViewCellを適切にレイアウトするのに十分簡単であることを発見しました

// Putting in a blank image to make sure text always pushed to the side.
UIGraphicsBeginImageContextWithOptions(CGSizeMake(kGroupImageDimension, kGroupImageDimension), NO, 0.0);
UIImage *blank = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
cell.imageView.image = blank;

次に、適切に動作する独自のUIImageViewを

// The cell.imageView increases in size to accomodate the image given it.
// We don't want this behaviour so we just attached a view on top of cell.imageView.
// This gives us the positioning of the cell.imageView without the sizing
// behaviour.
UIImageView *anImageView = nil;
NSArray *subviews = [cell.imageView subviews];
if ([subviews count] == 0)
{
    anImageView = [[UIImageView alloc] init];
    anImageView.translatesAutoresizingMaskIntoConstraints = NO;
    [cell.imageView addSubview:anImageView];

    NSLayoutConstraint *aConstraint = [NSLayoutConstraint constraintWithItem:anImageView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:cell.imageView attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0.0];
    [cell.imageView addConstraint:aConstraint];

    aConstraint = [NSLayoutConstraint constraintWithItem:anImageView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:cell.imageView attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0.0];
    [cell.imageView addConstraint:aConstraint];

    aConstraint = [NSLayoutConstraint constraintWithItem:anImageView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:0.0 constant:kGroupImageDimension];
    [cell.imageView addConstraint:aConstraint];

    aConstraint = [NSLayoutConstraint constraintWithItem:anImageView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:0.0 constant:kGroupImageDimension];
    [cell.imageView addConstraint:aConstraint];
}
else
{
    anImageView = [subviews firstObject];
}

画像をanImageViewに設定すると、UIImageViewが期待することを実行します。あなたがそれを与える画像に関係なく、あなたがそれを望むサイズにしてください。これはtableView:cellForRowAtIndexPathに入れます。


0

このソリューションは基本的に、指定された四角形内に「アスペクトフィット」として画像を描画します。

CGSize itemSize = CGSizeMake(80, 80);
UIGraphicsBeginImageContextWithOptions(itemSize, NO, UIScreen.mainScreen.scale);
UIImage *image = cell.imageView.image;

CGRect imageRect;
if(image.size.height > image.size.width) {
    CGFloat width = itemSize.height * image.size.width / image.size.height;
    imageRect = CGRectMake((itemSize.width - width) / 2, 0, width, itemSize.height);
} else {
    CGFloat height = itemSize.width * image.size.height / image.size.width;
    imageRect = CGRectMake(0, (itemSize.height - height) / 2, itemSize.width, height);
}

[cell.imageView.image drawInRect:imageRect];
cell.imageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

0

私も同じ問題を抱えていました。回答してくれた皆さん、ありがとうございました。これらの回答のいくつかの一部を使用して、一緒に解決策を得ることができました。

私の解決策はSwift 5を使用しています

私たちが解決しようとしている問題は、に異なるアスペクト比の画像があるかもしれませんがTableViewCell、一貫した幅でレンダリングしたいということです。もちろん、画像は歪みなくレンダリングされ、スペース全体を埋める必要があります。私の場合、背の高い細い画像の「トリミング」で大丈夫だったので、コンテンツモードを使用しました.scaleAspectFill

これを行うために、のカスタムサブクラスを作成しましたUITableViewCell。私の場合、名前を付けましたStoryTableViewCell。クラス全体が下に貼り付けられ、コメントがインラインで表示されます。

このアプローチは、カスタムアクセサリビューと長いテキストラベルを使用する場合にも役立ちました。これが最終結果の画像です。

一貫した画像幅でレンダリングされたテーブルビュー

class StoryTableViewCell: UITableViewCell {

    override func layoutSubviews() {
        super.layoutSubviews()

        // ==== Step 1 ====
        // ensure we have an image
        guard let imageView = self.imageView else {return}

        // create a variable for the desired image width
        let desiredWidth:CGFloat = 70;

        // get the width of the image currently rendered in the cell
        let currentImageWidth = imageView.frame.size.width;

        // grab the width of the entire cell's contents, to be used later
        let contentWidth = self.contentView.bounds.width

        // ==== Step 2 ====
        // only update the image's width if the current image width isn't what we want it to be
        if (currentImageWidth != desiredWidth) {
            //calculate the difference in width
            let widthDifference = currentImageWidth - desiredWidth;

            // ==== Step 3 ====
            // Update the image's frame,
            // maintaining it's original x and y values, but with a new width
            self.imageView?.frame = CGRect(imageView.frame.origin.x,
                                           imageView.frame.origin.y,
                                           desiredWidth,
                                           imageView.frame.size.height);

            // ==== Step 4 ====
            // If there is a texst label, we want to move it's x position to
            // ensure it isn't overlapping with the image, and that it has proper spacing with the image
            if let textLabel = self.textLabel
            {
                let originalFrame = self.textLabel?.frame

                // the new X position for the label is just the original position,
                // minus the difference in the image's width
                let newX = textLabel.frame.origin.x - widthDifference
                self.textLabel?.frame = CGRect(newX,
                                               textLabel.frame.origin.y,
                                               contentWidth - newX,
                                               textLabel.frame.size.height);
                print("textLabel info: Original =\(originalFrame!)", "updated=\(self.textLabel!.frame)")
            }

            // ==== Step 4 ====
            // If there is a detail text label, do the same as step 3
            if let detailTextLabel = self.detailTextLabel {
                let originalFrame = self.detailTextLabel?.frame
                let newX = detailTextLabel.frame.origin.x-widthDifference
                self.detailTextLabel?.frame = CGRect(x: newX,
                                                     y: detailTextLabel.frame.origin.y,
                                                     width: contentWidth - newX,
                                                     height: detailTextLabel.frame.size.height);
                print("detailLabel info: Original =\(originalFrame!)", "updated=\(self.detailTextLabel!.frame)")
            }

            // ==== Step 5 ====
            // Set the image's content modoe to scaleAspectFill so it takes up the entire view, but doesn't get distorted
            self.imageView?.contentMode = .scaleAspectFill;
        }
    }
}

0

最終的な解決策は、他の多くの解決策と似ています。ただし、セパレーターの正しい位置を取得するには、を呼び出す前に設定する必要がありましたsuper.layoutSubviews()。簡略化した例:

class ImageTableViewCell: UITableViewCell {

    override func layoutSubviews() {
        separatorInset.left = 70
        super.layoutSubviews()

        imageView?.frame = CGRect(x: 0, y: 0, width: 50, height: 50)
        textLabel?.frame = CGRect(x: 70, y: 0, width: 200, height: 50)
    }

}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.