这是我的代码
CGRect testr = CGRectMake(1, 50, 320, 200);
WeatherViewController *tv = [[WeatherViewController alloc] initWithNibName:@"WeatherViewController" bundle:nil];
UIView *testview = [tv.view initWithFrame:testr];
[self.view addSubview:testview];
无论我在我的 CGRectMake 中输入什么值,视图仍然会位于我的 baseView 的顶部。我究竟做错了什么?