Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
783 views
in Technique[技术] by (71.8m points)

ios - Memory leak in NSString stringWithUTF8String: with ARC enabled

In my application i have enabled the ARC. But in my application following lines gives me memory leaks according to instruments. It is in ios 7.0.

-(id)init{
    variables = [[NSMutableArray  alloc] init]; // Leak
    events = [[NSMutableArray  alloc] init]; //Leak
    return self;

}

Update

But in my app if i do something like below it does not show me any leak. But i can't add items in to the variables.

-(id)init{
    variables = [[[NSMutableArray  alloc] init] copy]; // No Leak
    events = [[[NSMutableArray  alloc] init] copy]; //No Leak
    return self;

}

--

NSString *utfString =[NSString stringWithUTF8String:(const char *)attr->children->content];//Leak

--

-(NSObject*)createObjectForClass:(NSString*)className{
    Class cls = NSClassFromString(className);
    NSObject *object = [[cls alloc]init]; //Leak
    if(cls != nil){
        CFRelease((__bridge CFTypeRef)(cls));
    }
    return object;
}

Does anyone has any idea how to fix this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

My guess right now is that your entire object is leaking, which means that the NSMutableArrays created in -init also leak. The version that calls copy isn't leaking because the copy is probably returning a singleton instance of NSArray (as there are zero elements in it, and it's an immutable NSArray, there's probably a singleton instance for that).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...