我想通过仅使用一个子类来生成自定义表格视图,在其相应的视图中显示不同的内容。当表格视图充满数据时,我想将整个视图发送到特定视图并显示它。
当我在显示视图控制器上生成表格视图时,没有问题。即使我可以将表视图从显示视图控制器转移到另一个视图,但是当我尝试在另一个类中生成表视图并尝试从根视图控制器调用它时,我只会得到一个已初始化但为空的表视图。
这是代码:
表视图生成器.h
#import <UIKit/UIKit.h>
@interface TableViewGenerator : UIViewController <UITableViewDataSource, UITableViewDelegate>
- (UITableView *) getTableViewForOtherVC;
@property (nonatomic, strong) IBOutlet UITableView *spreadSheet;
@end
表视图生成器.m
...
- (UITableView *) getTableViewForOtherVC {
if (!self.spreadSheet) {
self.spreadSheet = [[UITableView alloc]initWithFrame:CGRectMake(0., 0., self.view.frame.size.width, self.view.frame.size.height/2.5) style:UITableViewStyleGrouped];
}
UITableView *tableViewToBeTransfered = self.spreadSheet;
return tableViewToBeTransfered;
}
...
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = @"Test";
return cell;
}
显示VC.m
#import "DisplayingVC.h"
#import "TableViewGenerator.h"
@interface CTTOVViewController ()
@end
@implementation CTTOVViewController
- (void)viewDidLoad{
[super viewDidLoad];
UITableView *spreadSheet1;
if (!spreadSheet1) {
TableViewGenerator *tableVC = [[TableViewGenerator alloc]init];
spreadSheet1 = [tableVC getTableViewForOtherVC];
[self.view addSubview:spreadSheet1];
}
}
...
@end
我想我在填表时做错了什么,但我找不到什么。任何提示将不胜感激。
先感谢您