- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row
forComponent:(NSInteger)component reusingView:(UIView *)view
{
UILabel *mycom1 = view ? (UILabel *) view : [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 270.0f, 20.0f)];
NSString *imgstr1 = [pickerData objectAtIndex:row];
mycom1.text = imgstr1;
[mycom1 setFont:[UIFont systemFontOfSize: 13]];
mycom1.backgroundColor = [UIColor clearColor];
CFShow(mycom1);
[imgstr1 release];
return mycom1;
}
forComponent:(NSInteger)component reusingView:(UIView *)view
{
UILabel *mycom1 = view ? (UILabel *) view : [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 270.0f, 20.0f)];
NSString *imgstr1 = [pickerData objectAtIndex:row];
mycom1.text = imgstr1;
[mycom1 setFont:[UIFont systemFontOfSize: 13]];
mycom1.backgroundColor = [UIColor clearColor];
CFShow(mycom1);
[imgstr1 release];
return mycom1;
}