我在我的UINavigationController裏面創建了一個UITableView,問題是這個表覆蓋了它的頭部。這是我的課:UINavigationController裏面的UITableView
.H:
@interface SecondViewController : UINavigationController
@end
與.m的一部分:
- (id)init
{
self = [super init];
if (self) {
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
UITableView *mmm = [[UITableView alloc] initWithFrame:CGRectMake(0, 0,320, 100) style:UITableViewStylePlain];
[self.view addsubview:mmm];
}
我在做什麼錯?