3

我知道有办法解决这个问题,但我想知道以下问题是否可行。你能在 Objective-C 中“中止”一个方法吗?在这种情况下,它是在 Cocoa Touch 上。我有一个 IBAction。在那个动作中,我有 if/else if/else 语句。如果不是这样,我想中止该方法的其余部分。有点像返回 0,但对于 IBAction。

这可能吗?如果是这样,你将如何做到这一点。整个方法有点长,但这是我正在查看的部分:

if ([unitType isEqualToString:@"mg/dl"])
    {
        //Unit is mg.
        typeOfUnit = unitType;
    }
    else if ([unitType isEqualToString:@"mmol"])
    {
        //Unit is mmol
        typeOfUnit = unitType;
    }
    else
    {
        //Apparently either a bug or a (null) item.
        typeOfUnit = @"mg/dl";
        [[LEItemStore sharedStore] createItem];
        item = [[[LEItemStore sharedStore] allItems] objectAtIndex:0];
        [self loadItems:self];

        //Code to Abort the rest of the method here.
    }

谢谢。

4

1 回答 1

8

这很简单:

return;

(太简单了,没有这句话就太短了。)

于 2012-12-28T01:29:13.990 回答