内部にbool ifステートメントを含む次のコードがあり、別のメソッドでboolの値を変更し、メソッドを呼び出す必要があることはわかって[self someMethod];
いますが、変更をifステートメントに反映し、他のすべてを再度呼び出したくはありません。どうすればいいですか?ありがとう
-(void)someMethod
{
//start my code here
if (boolvalueisTrue)
{
//change this part only
}
}
-(void)changeBool {
boolvalueisTrue = TRUE;
[self someMethod];
//instead of calling the whole method i just want to reflect
//the changes inside my if statement
}