「参照カウントされたオブジェクトが解放された後に使用されています」というメモリ警告が表示されます
このために、自動リリースも試しました。しかし、役に立たない。
以下は私の警告を与えるコードです。問題は何ですか。教えてください
UICustomSwitch *switchView = [[UICustomSwitch alloc] initWithFrame:CGRectZero];
[switchView initWithFrame:CGRectMake(180,5,260,30)];
[switchView setOn:YES];
mySearchType = 1;
[[switchView rightLabel] setFont:[UIFont fontWithName:@"Georgia" size:16.0f]];
[[switchView leftLabel] setFont:[UIFont fontWithName:@"Georgia" size:16.0f]];
[switchView addTarget:self action:@selector(switchToggled:)forControlEvents:UIControlEventValueChanged];
[cell.contentView addSubview:switchView];