0

现在我正在尝试从 Facebook 中提取图像,并将其放在表格视图中。

我不想使用单元格的默认图像视图。因为图像大小可能会有所不同。

如何制作图像视图并将其放入单元格中,然后调整单元格高度以使其与图像高度匹配?

任何帮助都会非常有帮助。

谢谢,维林德博拉

4

2 回答 2

0

UITableViewDelegate您可以在方法中指定行的高度- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath。有可能通过使用该方法,您可以使用的内置imageView属性UITableViewCell

编辑:如果由于某种原因该imageView属性不会让你做你想做的事,我会考虑制作一个自定义子类UITableViewCell

于 2012-05-07T23:55:30.180 回答
0

它对我有用:

视图控制器.h

#import <UIKit/UIKit.h>
#import "ResizingCell.h"
@interface ViewController : UITableViewController
@property (strong, nonatomic) IBOutlet ResizingCell *Cell;
@end

视图控制器.m

#import "ViewController.h"
@implementation ViewController
@synthesize Cell;
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 1;
}
- (float)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return [(ResizingCell *)[self tableView:tableView cellForRowAtIndexPath:indexPath] getHeight];
}
- (ResizingCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    ResizingCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (!cell) {
        [[NSBundle mainBundle] loadNibNamed:@"ResizingCell" owner:self options:nil];
        cell = [self Cell];
        [self setCell:nil];
    }
    UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%d.png", [indexPath row]]];
    [cell setImage:image];
    return cell;
}
@end

调整Cell.h

#define BUFFER 20
#import <UIKit/UIKit.h>
@interface ResizingCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UIImageView *myImageView;
- (void)setImage:(UIImage *)image;
- (float)getHeight;
@end

调整Cell.m

#import "ResizingCell.h"
@implementation ResizingCell
@synthesize myImageView;
- (void)setImage:(UIImage *)image {
    [[self myImageView] setImage:image];
    // Because the width will be important, I'd recommend setting it here...
    [[self myImageView] setFrame:CGRectMake(currFrame.origin.x, currFrame.origin.y, image.size.width, currFrame.size.height)];
}
- (float)getHeight {
    return (2 * BUFFER) + [[self myImageView] image].size.height;
}
@end

代码应该是不言自明的。当我用一个非常高的图像测试它时,它会适当地改变高度。

于 2012-05-08T00:09:41.447 回答