congbo

get rid of the warning when analysing it

PNPieChart.m:137:33: warning: Passed-by-value struct argument contains
uninitialized data (e.g., via the field chain: 'origin.x')
@@ -132,7 +132,7 @@ @@ -132,7 +132,7 @@
132 _outterCircleRadius - distance * cos(rad)); 132 _outterCircleRadius - distance * cos(rad));
133 133
134 CGRect frame; 134 CGRect frame;
135 - frame.size = CGSizeMake(100, 80); 135 + frame = CGRectMake(0, 0, 100, 80);
136 136
137 UILabel *descriptionLabel = [[UILabel alloc] initWithFrame:frame]; 137 UILabel *descriptionLabel = [[UILabel alloc] initWithFrame:frame];
138 [descriptionLabel setText:titleText]; 138 [descriptionLabel setText:titleText];