我会在UITableView
里面放一个UIView
. 我创建了一个 XIB,其中有一个 tableView。
#import <UIKit/UIKit.h>
@interface PointsViewController : UIViewController <UITableViewDelegate>
{
IBOutlet UITableView *tableView;
}
@end
- (void)viewDidLoad
{
[super viewDidLoad];
[tableView setDelegate:self];
}
PointViewController
我从另一个类实例化该类并UINavigationBar
通过按钮将其添加到 a:当我单击按钮时,PointsViewController
'视图(tableView)将打开。但事实并非如此。我错过了什么?我还尝试将 PointsViewController 作为UITableViewController
其工作的子类,但没有UITableView
显示。