6

このメモリリークが発生していました:

[UIPickerTableViewTitleCell initWithStyle:resuableIdentifier]; 

NSConcentrateMutableAttributedString.

問題は、このデリゲートを実装していなかったことです。これを実装すると、メモリリークがなくなります。私はこの問題を理解するためだけに 16 時間を費やしているので、この情報は他の人にとって役立つかもしれません。

// Do something with the selected row.
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {

// Get the text of the row.
NSString *rowItem = [NSString stringWithFormat:@"     %@",[machineData objectAtIndex:row]];

// Create and init a new UILabel.
// We must set our label's width equal to our picker's width.
// We'll give the default height in each row.
UILabel *lblRow = [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, [pickerView bounds].size.width, 44.0f)];

// Make the text color red.
[lblRow setTextColor: [UIColor blackColor]];
[lblRow setFont:[UIFont boldSystemFontOfSize:20]];

// Center the text.
[lblRow setTextAlignment:UITextAlignmentLeft];

// Add the text.
[lblRow setText:rowItem];

// Clear the background color to avoid problems with the display.
[lblRow setBackgroundColor:[UIColor clearColor]];

// Return the label.
return lblRow;
}
4

2 に答える 2

0

ポップオーバーで IUIPicker を使用しましたが、ポップオーバーを閉じるたびにメモリ リークが発生しました。私も ARC を使用しているため、これを解決する最も簡単な方法は、アンロード時に UIPickerView = nil を設定することでした。以下はトリックを行ったようです。

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
    self.pickerView = nil;
}
于 2013-04-20T13:19:26.417 に答える
0

情報をありがとう。この漏れに戸惑いました。いくつかのコメントのみ:

  • おそらくlblRowは自動解放されるべきです:return [lblRow autorelease];

  • [pickerView rowSizeForComponent:component]新しいラベルのサイズを取得するために使用できます。

于 2012-10-31T16:02:08.013 に答える