1- Expand Hard Disk (SATA) Drive from VMware Hardware Settings 2- Open Terminal And check Capacity with Disk Utility (If you see 53.9 Dont just write 53 else you can get some errors.) 3- Open Terminal and use something like these commands. diskutil resizeVolume /dev/disk0s2 53G diskutil resizeVolume /dev/disk0s2 1.2T
Etiket: macos
iOS Xcode open other view automatically
This is the code which open new view. UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@”Main” bundle:[NSBundle mainBundle]]; UIViewController *myController = [storyboard instantiateViewControllerWithIdentifier:@”Yontem2″]; [self presentViewController:myController animated:YES completion:nil]; @”Main” -> Because of Main.storyboard file @”Yontem2″ -> is name of our view Yontem2.h and Yontem2.m Also you have to use storyboard Yontem2