How can i reduce the font size for the each item?
NSArray *btns = [NSArray arrayWithObjects:@"ANNEXET",@"HOVET",@"GLOBEN","ALL",nil];
toolbtn = [[UISegmentedControl alloc] initWithItems:btns];
[toolbtn addTarget:self action:@selector(segmentAction) forControlEvents:UIControlEventValueChanged];
//toolbtn.segmentedControlStyle = UISegmentedControlStyleBezeled;
toolbtn.segmentedControlStyle=UISegmentedControlStyleBar;
toolbtn.tintColor=[UIColor darkGrayColor];
toolbtn.backgroundColor=[UIColor blackColor];
[toolbtn setFrame:CGRectMake(0,0,320,30)];
[self.view addSubview:toolbtn];
Kindly help me regarding on this.
Thanks