修改View显示位置
SettingViewController* settingView = [[SettingViewController alloc] initWithNibName:@"SettingViewController" bundle:nil];CGRect rect = CGMakeRect(x,y,width,height);[settingView.view setFrame: rect];[self.view addSubview:settingView.view];
?