查看Xcode模拟器上APP的信息

第一步:查看模拟器identifier(形如:FB964CCA-9DB0-4E7B-AAD4-D9A7FB35C4CC)

、、、

- (instancetype)initWithNibName:(NSString*)nibNameOrNil bundle:(NSBundle*)nibBundleOrNil{

   self= [superinitWithNibName:nibNameOrNilbundle:nibBundleOrNil];

   if(self) {

       self.view.backgroundColor= [[UIColorblackColor]colorWithAlphaComponent:0];

       self.modalPresentationStyle=UIModalPresentationOverCurrentContext;

        [UIViewanimateWithDuration:0.3animations:^{

           self.view.backgroundColor= [[UIColorblackColor]colorWithAlphaComponent:0.5];

        }];

    }

   returnself;

}

、、、

  方法:Xcode->Windows->Devices

第二步:

    Developer -> 

    CoreSimulator -> 

    Devices -> 

    找到第一步的identifier对应的文件夹 -> 

    data -> 

    Containers -> 

    Data -> 

    Application(这个文件夹是模拟器上安装的所有APP) -> 

    找到你想要找的APP对应的文件夹(方法:可以先把模拟器上的APP删掉,你的这个Application文件里面会有一个位置空出来 记住这个位置,重新运行工程,这个位置会被你运行的APP填上)->

    Library -> 

    <结束>

你可能感兴趣的:(查看Xcode模拟器上APP的信息)