Як мені зробити ImageView UITableViewCell фіксованого розміру, навіть коли зображення менше


104

У мене є маса зображень, які я використовую для перегляду зображень у клітинку, всі вони не більше 50х50. наприклад 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

45
що робити, якщо ми не додамо підклас UITableViewCell?
неополярність

3
@ 動靜 能量: Підкласифікація UITableViewCell є головним трюком для цього, щоб він працював.
auco

5
Це не працює для мене. Зображення все ще охоплює весь imageView.
joslinm

14
Для мене це також не працює, оскільки мітки нерівні.
nverinaud

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;
}

Швидкий 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);
Кіран Рут Р

1
Хороша відповідь. До речі, я не отримав варіант, UIScreen.mainScreen.scaleтому я просто пішов UIGraphicsBeginImageContext. Також змінено розмір imageView в базовій комірці.
деніков

3
@GermanAttanasioRuiz щодо вибору комірки він знову змінює розмір до оригіналу, чи має бути саме так, як це вирішити.
Бонні

6
для всіх тих, хто заплутався, як я, вам потрібно встановити зображення перед початком контексту. тобто cell.imageView.image = [UIImage imageNamed: @ "my_image.png"];
Гай Лоу

5
Такі дорогі операції не повинні входити до стільникової
стінки

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

1
Це досі найкраще рішення. Дякую.
Rémi Belzanti

Цього дня я, напевно, рекомендую зробити власну клітинку з осередком xib або прототипом на дошці розкадрування та створити зовсім інший вигляд зображення, не пов'язаний із переглядом зображень стандартної комірки. Але це все ще досить просто, я здогадуюсь!
Кріс

1
Я хочу зробити все з кодом, а не використовувати xib або аркуш розкадрів, і це спрацювало чудово.
John81

Ця відповідь нічого не робить, якщо w <desireWith, що, як мені здається, є випадком використання інтересу (принаймні, у питанні).
Нейт

21

Перегляд зображень додати як підпогляд до комірки tableview

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
Не забудьте випустити imgView, якщо ви не використовуєте ARC.
Чарлі Монро

14

Цілу клітинку не потрібно переробляти. Ви можете використовувати властивість indentaLevel і indentaWidth для tableViewCells для переміщення вмісту своєї комірки. Потім ви додаєте свій власний imageView до лівої частини комірки.


6

Краще створіть подання зображення та додайте його як підпогляд у комірку. Потім ви можете отримати потрібний розмір кадру.


Щойно спробував це, добре виглядає початок, але текст у клітинках тепер перекриває зображення, як я зміщую подання вмісту на 50 пікселів праворуч? cell.contentView.bounds = CGRectMake (50, 0, 270, 50); не має жодного ефекту
Роберт

1
Замість використання подання за замовчуванням для комірок, створіть мітку та додайте її як підпогляд у комірку, а потім призначте текст властивості тексту мітки. Цим ви можете спроектувати клітинку відповідно до ваших вимог.
Воїн

Це буде корисніше, якщо ви хочете відобразити назву, дату, опис тощо, більше значень у комірці.
Воїн

Добре, що в основному хворим доводиться переробляти клітку програмно. Не повинно бути занадто важким. Дякую за допомогу.
Роберт

6

Просто Swift ,

Крок 1: Створіть один підклас UITableViewCell
кроку 2: Додайте цей метод до підкласу 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

Ось метод роботи @germanattanasio, написаний для Swift 3

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 не поводиться так, як ви цього хочете. Я виявив, що це досить просто, щоб змусити UITableViewCell викласти належним чином, спочатку надавши cell.imageView зображення належного розміру, як

// 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

У мене була така ж проблема. Дякую всім, хто відповів - я зміг спільно знайти рішення, використовуючи частини кількох цих відповідей.

Моє рішення використовує швидкий 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)
    }

}
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.