コード:このNSStringを正しくリリースするにはどうすればよいですか?
- (void) foo : (NSString*) ori_string
{
her_string = [ori_string copy];
while ([her_string length]>0)
{
her_string = [her_string substringFromIndex:1];
//do something...
}
[her_string release]; //Here is the problem
}
こんにちはすべて、
私は上記のようher_string
をリリースする場合は、アナライザはit's an incorrect decrement of the reference count of an object that is not owned at this point by the caller
と言いました。
もし私がそれをリリースしなければ、それは潜在的なメモリリークだと言いました。
どこから解除すればよいですか?ありがとうございました!
私はそれを完全に手に入れました。マイケルありがとう! – Skyler