UITableViewCell中的UITableView委托和数据源

时间:2015-12-04 10:33:12

标签: ios objective-c iphone uitableview delegates

我在UITableViewCell中有一个UITableView,我需要弄清楚如何设置子表视图数据源和委托。目前这就是我所拥有的:

MainTableViewController.h

#import <UIKit/UIKit.h>

@interface MainTableViewController : UITableViewController <UITableViewDataSource, UITableViewDelegate>


@end

MainTableViewController.m

#import "MainTableViewController.h"
#import "TableViewCell.h"

@interface MainTableViewController ()

@property (weak, nonatomic) IBOutlet UITableView *tableView;

@end

@implementation MainTableViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - UITableView delegate functions

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 3;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellIdentifier = @"tableViewCell";
    TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    cell.cellLabel.text = [NSString stringWithFormat:@"%ld", (long)indexPath.row];

    return cell;

}


@end

TableViewCell.h

#import <UIKit/UIKit.h>

@interface TableViewCell : UITableViewCell <UITableViewDelegate, UITableViewDataSource>

@property (weak, nonatomic) IBOutlet UILabel *cellLabel;
@property (weak, nonatomic) IBOutlet UITableView *subTableView;

@end

TableViewCell.m

#import "TableViewCell.h"

@implementation TableViewCell

-(id)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    if (self) {
        self.subTableView.delegate = self;
        self.subTableView.dataSource = self;
    }

    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 1;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"subTabeViewCell"];
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"subTabeViewCell"];

    cell.textLabel.text = @"test";

    return cell;
}

@end

因为我无法从子表视图中按ctrl +拖动到TableViewCell类,所以我试图在初始化过程中以编程方式设置委托和数据源,但它不起作用,我只是直接迷茫。

我知道我可以设置数据源和委托连接到第一个类,然后在每个委托函数中检查以查看我正在处理的tableView,但具有我正在尝试做的性质它不会真的有用,我试过了。

欢迎所有帮助

1 个答案:

答案 0 :(得分:2)

所以我想通了,我想出了一种方法。在MainTableViewController.m的cellForRowAtIndexPath中,我只是添加了:

[cell.subTableView setDelegate:cell];
[cell.subTableView setDatasource:cell];

所有人都在努力