Привет M, получаю проблему с добавлением меток..M, добавляю метки статически, передавая массив внутри цикла и устанавливая позиции оси x & y..m, передавая массив цветных изображений и массив меток .. даже здесь M получая метки вверх дном ицветные изображения ... что проблема может быть .. внизу код:
for( int i=0;i< [PieChartColorDescriptionArray count]; i++)
{
UIButton* blueButton=[UIButton buttonWithType:UIButtonTypeCustom];
[blueButton setFrame:CGRectMake(165+80,65+(40*i),10,20)];
[blueButton setTitle:@"" forState:UIControlStateNormal];
[blueButton setAutoresizingMask:UIViewAutoresizingFlexibleWidth ];
[blueButton setBackgroundImage:[UIImage imageNamed:[PieChartButtonImagesArray objectAtIndex:i]] forState:UIControlStateNormal];
[blueButton setAutoresizingMask:AUTORESIZEMASK];
[blueButton setUserInteractionEnabled:FALSE];
[self.view addSubview:blueButton];
[blueButton retain];
UILabel* loLabel1=[[UILabel alloc]initWithFrame:CGRectMake(178+80,50+(40*i),50,50)];
[loLabel1 setBackgroundColor:[UIColor clearColor]];
[loLabel1 setTag:101];
[loLabel1 setTextColor:[UIColor blackColor]];
[loLabel1 setTextAlignment:UITextAlignmentCenter];
[loLabel1 setAdjustsFontSizeToFitWidth:NO];
[loLabel1 setNumberOfLines:1];
[loLabel1 setFont:[UIFont systemFontOfSize:11]];
[loLabel1 setText:[PieChartColorDescriptionArray objectAtIndex:i]];
//loLabel1.transform=CGAffineTransformMakeRotation(-360.0);
[loLabel1 setAutoresizingMask:AUTORESIZEMASK];
[self.view addSubview:loLabel1];
[loLabel1 retain];
}