0

UITableViewデリゲート/データソースをオブジェクトのインスタンスに設定しようとするのはこれが初めてです。

hMain というクラスによって管理される UIView と、vTable というクラスのインスタンスによって管理されるメイン内の UITableView があります。

hMain.h:

@interface hMain : UIViewController
@property (strong, nonatomic) IBOutlet vTable *voteTbl;   
@end

hMain.m:

- (void)viewDidLoad
{
[super viewDidLoad];

voteTbl = [[vTable alloc]init];
[self.voteTbl setDelegate:voteTbl];
[self.voteTbl setDataSource:voteTbl];   

}

vTable.h:

@interface vTable : UITableView <UITableViewDelegate , UITableViewDataSource>
@end

vTable.M:

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

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

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

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [UITableViewCell configureFlatCellWithColor:[UIColor greenSeaColor] selectedColor:[UIColor wetAsphaltColor] reuseIdentifier:CellIdentifier inTableView:(UITableView *)tableView];

    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        [cell configureFlatCellWithColor:[UIColor greenSeaColor] selectedColor:[UIColor wetAsphaltColor]];
    }

    cell.textLabel.text = @"Hello there!";

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"Row pressed!!");
}

IBから離れてプログラムで物事を行うのはこれが初めてなので、デリゲートと物事を正しく設定するかどうかはわかりません。これは私の最初の試みでもあり、自分の外でデリゲート/データソースを設定します。

私の問題は、毎回テーブルが空白になることです。

4

1 に答える 1