_BSMachError XCode 7 Beta

前端 未结 8 1665
后悔当初
后悔当初 2020-12-08 00:15

I am getting the following error when I am running my code in Xcode7 with Swift2, after presenting a view controller through a push segue:

_BSMachError: (os/         


        
8条回答
  •  暖寄归人
    2020-12-08 00:40

    Dismissing view controller prematurely might cause this.

    [self dismissViewControllerAnimated:YES completion:NULL]; 
    //
    

    This throws _BSMachErrors

    vs

    //
    [self dismissViewControllerAnimated:YES completion:NULL]; 
    

    Now, the _BSMachError is gone.

提交回复
热议问题