UIView vs UITableCellView显示用户帖子

时间:2015-05-04 04:01:45

标签: ios objective-c uiview

我的应用程序有一个主屏幕,我在其中显示从服务器加载的用户帖子。我的问题是我为每个帖子使用UIView,但它占用了大量空间(用户也继续滚动,使其消耗更多内存)。例如:

        UIView* box=[[UIView alloc]initWithFrame:CGRectMake(0, postY, maxWidth, 500)];
        [box setTag:(NSInteger)[post_id[i] integerValue]];

        [box setBackgroundColor:[UIColor whiteColor]];

        //Profile pic+++
        UIImageView* profile_img=[[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 30, 30)];
        profile_img.layer.cornerRadius=profile_img.frame.size.width/2; //Make it round
        profile_img.layer.masksToBounds=YES; //Make it round
        profile_img.layer.borderWidth=0.5;
        profile_img.layer.borderColor=[rgb(214, 222, 231) CGColor];

        [box addSubview:profile_img];

依此类推 ...... 有谁知道更好的方法吗?我对UITableCellView很强硬,但这样做这个任务似乎很奇怪

2 个答案:

答案 0 :(得分:0)

我建议您使用UITableViewController,然后使用子类UITableViewCell创建自定义单元格以显示数据。 UITableViewController实例包含UITableView,您可以通过在自定义UITableViewCell子类中设置数据来显示数据。基本上,UITableView包含各种UITableViewCell,并使用委托方法来响应您桌面上的事件和操作。

// YourCustomTableViewCell.h
#import <UIKit/UIKit.h>

@interface YourCustomTableViewCell : UITableViewCell

// Setup the properties for the cell, e.g
@property (strong, nonatomic) IBOutlet UIImageView *profileImageView; // Connect to outlet in storyboard file

@end

// YourCustomTableViewCell.m
#import "YourCustomTableViewCell.h"

@implementation YourCustomTableViewCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
        self.profileImageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 30, 30)];
    }
    return self;
}

- (void)awakeFromNib
{
    // Use this method to setup frames and sizes of your properties
    self.profileImageView.layer.cornerRadius = profileImageView.frame.size.width/2; //Make it round
    self.profileImageView.layer.masksToBounds = YES; //Make it round
    self.profileImageView.layer.borderWidth=0.5;
    self.profileImageView.layer.borderColor = [rgb(214, 222, 231) CGColor];
}

@end

// YourTableViewController.h
#import <UIKit/UIKit.h>

@interface YourTableViewController : UITableViewController

@end

// YourTableViewController.m
#import "YourTableViewController.h"
#import "YourCustomTableViewCell.h"

@interface YourTableViewController ()

@end

@implementation YourTableViewController

- (void)viewDidLoad
{
    // Setup your data source for the table
    self.tableView.dataSource = self;

    // Setup other stuff after loading the view
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1; // Return the number of sections you want in the table view
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows for each section, in your case this would be something like this
    return self.posts.count; // If your data is stored in an array
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *identifier = @"YourCustomCell";
    YourCustomTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];

    if (!cell){
        cell = [[YourCustomTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
    }

    // Configure the cell...

    // Here you add the code to display the data in the cell e.g.
    [cell.profileImageView setImage:yourImageToDisplay];

    return cell;
}

@end

答案 1 :(得分:0)

正如评论所说,您最好选择UITableView作为帖子&#39;容器并从UITableViewCell继承为您的框视图。

详细说来,假设该类继承自名为UITableViewCell的{​​{1}},并将其MyTableViewCell视为您的contentView。之后,您可以通过向UIView *box发送UITableView告诉MyTableViewCellregisterClass:forCellReuseIdentifier:用作单元格。

然后,您可以通过发送MyTableViewCell UITableView消息来获取 dequeueReusableCellWithIdentifier:forIndexPath:实例。在绑定数据(告诉他显示哪些帖子)之后,可以将此实例返回到UITableView,这将为您安排一切。此外,这些通常应该在UITableView dataSource方法- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath中完成。