Why am I getting ibtool failed with exit code 255?

前端 未结 30 2352
梦谈多话
梦谈多话 2020-11-29 22:34

All of a sudden I can\'t build my project. I get the following compiler error:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.pl

30条回答
  •  眼角桃花
    2020-11-29 23:30

    As Logan Geefs mentions above, it appears to be caused by Interface Controller segues (i.e. loops). Deleting the "bad" segues doesn't really solve the navigation problem. What is needed is to place some button actions to [pop controllers] strategically.

    Here's the code that worked for me:

     - (IBAction)backToStart {
    
       [self popToRootController];
     }
    
     - (IBAction)backToPrevious {
    
       [self popController];
     }
    

提交回复
热议问题