所以我有两种方法
-(void)someMethod
{
[self someOtherMethod];
//Do some other stuff
}
-(void)someOtherMethod
{
//Do some other stuff
}
而且我想知道是否可以运行 someOtherMethod ,如上面的代码所示,但无需等待 someOtherMethod 在继续之前完成运行。
所以我有两种方法
-(void)someMethod
{
[self someOtherMethod];
//Do some other stuff
}
-(void)someOtherMethod
{
//Do some other stuff
}
而且我想知道是否可以运行 someOtherMethod ,如上面的代码所示,但无需等待 someOtherMethod 在继续之前完成运行。