1

我想通过引用传递一个布尔 NegatiefOfNiet 调用。我怎样才能做到这一点?

- (NSMutableArray *)ontbindInFactoren:(int)product inTabel:(NSMutableArray *)tabel voorAlDanNietNegatief: (BOOL) NegatiefOfNiet

我意识到我应该做这样的程序:

  - (bool)ontbindInFactoren:(int)product inTabel:(NSMutableArray *)tabel voorAlDanNietNegatief: (BOOL) NegatiefOfNiet

因为表格有一个指针,所以我不应该返回表格。问题是现在所有代码都写好了,所以我想通过引用传递布尔调用。这是怎么做到的?

发送

4

1 回答 1

0

试试下面的代码:

BOOL NegatiefOfNiet = NO;
[self ontbindInFactoren:product inTable:tabel voorAlDanNietNegatief:&NegatiefOfNiet];

- (NSMutableArray *)ontbindInFactoren:(int)product inTabel:(NSMutableArray *)tabel voorAlDanNietNegatief:(BOOL *)NegatiefOfNiet
{
    *NegatiefOfNiet = YES;
}
于 2013-11-14T19:16:07.307 回答