问题描述
|
我已经尝试了许多不同的尝试,但是总是以泄漏或错误结尾。这是我的代码,其中分配和释放的位被取出。我想知道人们如何建议我应该这样做?
。H
#import \"MatchingColors.h\"
@interface MagicSchemeView : UIViewController {
NSMutableArray *colors;
}
.m
colors = [MatchingColors monochromaticWithH:h S:s B:b WithComplementary:NO];
然后在MatchingColors.m中:
+(NSMutableArray *)monochromaticWithH:(float)h S:(float)s B:(float)b WithComplementary:(BOOL)complementary {
return result;
}
就像我说的那样,我在这里分配和释放的尝试似乎是错误的。有想法吗?
解决方法
这应该工作
[发色]的地方;完成之后。一旦知道您不需要它,或者将在dealloc上完成。确保使用dealloc是发布此版本的最后手段。
.m:
colors = [[MatchingColors monochromeWithH:h S:s B:b WithComplementary:NO]保留];
+(NSMutableArray *)monochromeWithH:(float)h S:(float)s B:(float)b WithComplementary:(BOOL)complementary
{
NSMutableArray * result = [[[[NSMutableArray alloc] init] autorelease];
//在这里创建结果
返回结果;
}