self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
[self.window setBackgroundColor:[UIColor whiteColor]];
WaterFlowViewController *waterVC = [[WaterFlowViewController alloc]init];
[self.window setRootViewController:waterVC];
[self.window makeKeyAndVisible];
return YES;